Skip to content

Commit

Permalink
add a few more spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ameraner committed Jun 14, 2024
1 parent e9e214d commit 512a265
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyresample/test/test_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def test_nonzero_set_empty_bucket_to_number(self):
# 5 is untouched in a single bin
self.assertEqual(np.count_nonzero(result == 5.), 1)
# all-nan and rest is 4095
self.assertEqual(np.count_nonzero(result == 4095), 2048*2560-2)
self.assertEqual(np.count_nonzero(result == 4095), 2048 * 2560 - 2)
self.assertEqual(np.nanmin(result), 2)

def test_nonzero_set_empty_bucket_to_npnan(self):
Expand All @@ -226,7 +226,7 @@ def test_nonzero_set_empty_bucket_to_npnan(self):
# 5 is untouched in a single bin
self.assertEqual(np.count_nonzero(result == 5.), 1)
# all-nan and rest is np.nan
self.assertEqual(np.count_nonzero(np.isnan(result)), 2048*2560-2)
self.assertEqual(np.count_nonzero(np.isnan(result)), 2048 * 2560 - 2)
self.assertEqual(np.nanmin(result), 2)

def test_get_count(self):
Expand Down

0 comments on commit 512a265

Please sign in to comment.