Skip to content

Commit

Permalink
Fix test error on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sjfleming committed Aug 25, 2023
1 parent 569aab3 commit af80d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cellbender/remove_background/tests/test_posterior.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def test_save_and_load(tmpdir_factory, blank_noise_offsets, m):
if blank_noise_offsets:
noise_offsets = {}
else:
noise_offsets = dict(zip(np.random.randint(low=0, high=(m - 1), size=10),
noise_offsets = dict(zip(np.random.randint(low=0, high=(m - 1), size=10, dtype=np.uint64),
np.random.randint(low=1, high=5, size=10)))
kwargs = {'a': 'b', 'c': 1}
kwargs2 = {'a': 'method', 'c': 1}
Expand Down

0 comments on commit af80d5a

Please sign in to comment.