Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Litwiniuk committed Aug 3, 2022
1 parent 0ba6b06 commit c9d9af3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/backtrace/io/data/AttributesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ public class AttributesTest {
@Test
public void createAttributes() {
// GIVEN
final Map<String, Object> clientAttributes = new HashMap<>() {{
final Map<String, Object> clientAttributes = new HashMap<String, Object>() {{
put("client-attr-1", "1");
put("client-attr-2", null);
put(null, null);
}};

final Map<String, Object> reportAttributes = new HashMap<>() {{
put("report-attr-1", new HashMap<>() {{
final Map<String, Object> reportAttributes = new HashMap<String, Object>() {{
put("report-attr-1", new HashMap<String, Object>() {{
put("inner-attr-1", "test");
put(null, null);
}}
Expand Down

0 comments on commit c9d9af3

Please sign in to comment.