Skip to content

Commit

Permalink
Merge branch 'master' into drt-estimator
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow authored Oct 18, 2023
2 parents 00179f2 + 1542546 commit 5bf3aa1
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 5bf3aa1

Please sign in to comment.