Skip to content

Commit 46765cd

Browse files
[pre-commit.ci] auto fixes from pre-commit hooks
1 parent f1d2c22 commit 46765cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ def test_applycutoff_range1(self):
105105
self.test_gui.qminentry.insert(0, "10")
106106
self.test_gui.qmaxentry.insert(0, "40")
107107

108-
# Desired behavior is nans in the arrays below qmin and above qmax. As a result, np.nanmax will generate
109-
# runtimewarnings when it # encounters slices that are all nans. capture these so tests pass cleanly
108+
# Desired behavior is nans in the arrays below qmin and above qmax. As a result, np.nanmax will generate
109+
# runtimewarnings when it # encounters slices that are all nans. capture these so tests pass cleanly
110110
# without warnings
111111
with warnings.catch_warnings():
112112
warnings.simplefilter("ignore", category=RuntimeWarning)
@@ -124,8 +124,8 @@ def test_applycutoff_range2(self):
124124
self.test_gui.qminentry.insert(0, "15")
125125
self.test_gui.qmaxentry.insert(0, "35")
126126

127-
# Desired behavior is nans in the arrays below qmin and above qmax. As a result, np.nanmax will generate
128-
# runtimewarnings when it # encounters slices that are all nans. capture these so tests pass cleanly
127+
# Desired behavior is nans in the arrays below qmin and above qmax. As a result, np.nanmax will generate
128+
# runtimewarnings when it # encounters slices that are all nans. capture these so tests pass cleanly
129129
# without warnings
130130
with warnings.catch_warnings():
131131
warnings.simplefilter("ignore", category=RuntimeWarning)

0 commit comments

Comments
 (0)