Skip to content

Commit

Permalink
add a delta to please windows build server
Browse files Browse the repository at this point in the history
  • Loading branch information
jfbischoff committed Oct 18, 2023
1 parent 43cd2e9 commit 73caa90
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ public void install() {
System.out.println((int) listener.counts.get("car"));
System.out.println(listener.counts.get("walk"));

assertEquals(44195, (int) listener.counts.get("pt"));
assertEquals(132316, (int) listener.counts.get("car"));
assertEquals(82139, (int) listener.counts.get("walk"));
assertEquals(44195, listener.counts.get("pt"), 2);
assertEquals(132316, listener.counts.get("car"), 2);
assertEquals(82139, listener.counts.get("walk"), 2);

}

Expand Down

0 comments on commit 73caa90

Please sign in to comment.