Skip to content

Commit

Permalink
chore: Fix failing test in github actions (#100)
Browse files Browse the repository at this point in the history
* chore: Fix failing test in github actions
  • Loading branch information
izaaz authored Feb 27, 2024
1 parent 13ff010 commit 2ab6b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/amplitude/HttpTransportTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ public void onLogEventServerResponse(Event event, int status, String message) {
}
httpTransport.shutdown();

assertTrue(latch.await(5L, TimeUnit.SECONDS));
assertTrue(latch.await(10L, TimeUnit.SECONDS));
for (Event event : events) {
assertEquals(200, resultMap.get(event));
}
Expand Down

0 comments on commit 2ab6b4d

Please sign in to comment.