Skip to content

Commit

Permalink
Update test nearlyEquals tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
tdrwenski committed Jan 18, 2024
1 parent 0393dfe commit 97e6437
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,6 @@ public void shouldSubsetGrid() throws Exception {

v = nf.getRootGroup().findVariableLocal(vars);
assertArrayEquals(expect.shape, v.getShape());
assertThat(expect.rect.nearlyEquals(prect)).isTrue();
assertThat(expect.rect.nearlyEquals(prect, 1e-3)).isTrue();
}
}

0 comments on commit 97e6437

Please sign in to comment.