Skip to content

Commit

Permalink
#6022 - separated nx and ny tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeilman committed Aug 10, 2023
1 parent 7cf62e8 commit 05493a0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/template/srw_resize_3d_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ def test_srw_resize_3d(fc):
PKDict(),
)
pkok(
xr[2] < _N_BINS and yr[2] < _N_BINS,
"did not reduce bins nx={} ny={}",
xr[2] < _N_BINS,
"did not reduce bins nx={}",
xr[2],
)
pkok(
yr[2] < _N_BINS,
"did not reduce bins ny={}",
yr[2],
)

0 comments on commit 05493a0

Please sign in to comment.