Skip to content

Commit

Permalink
Fix asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
manitgupta committed May 14, 2024
1 parent 3716524 commit b2f8e37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ private void assertUsersTableContents() {
row = new HashMap<>();
row.put("id", 12);
row.put("name", "Tester12");
row.put("age_spanner", 12);
row.put("age_spanner", 112);
row.put("migration_shard_id", "L4");
events.add(row);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private void assertUsersTableContents() {
row = new HashMap<>();
row.put("id", 12);
row.put("name", "Tester12");
row.put("age", 12);
row.put("age", 112);
events.add(row);

row = new HashMap<>();
Expand Down

0 comments on commit b2f8e37

Please sign in to comment.