Skip to content

Commit 0b0b836

Browse files
author
Bartosz Litwiniuk
committed
Retrigger pipeline
1 parent 520ae2b commit 0b0b836

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backtrace-library/src/androidTest/java/backtraceio/library/SettingAttributesTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ public void setUp() {
4747
context = InstrumentationRegistry.getInstrumentation().getContext();
4848
final String url = "https://backtrace.io/";
4949
backtraceCredentials = new BacktraceCredentials(url);
50-
clientAttributes = new HashMap<>();
51-
52-
clientAttributes.put(customClientAttributeKey, customClientAttributeValue);
50+
clientAttributes = new HashMap<String, Object>() {{
51+
put(customClientAttributeKey, customClientAttributeValue);
52+
}};
5353
}
5454

5555
@Test

0 commit comments

Comments
 (0)