Skip to content

Commit 1c64939

Browse files
committed
misc: Flake8
1 parent 73da915 commit 1c64939

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_operator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2203,7 +2203,8 @@ def test_temp_array(self, caplog, override):
22032203
# Factor in the temp array
22042204
# Note: temp array size is incremented by one in the x dimension
22052205
# due to derivative.
2206-
array_check = (b.shape_allocated[0]+1)*b.shape_allocated[1]*np.dtype(b.dtype).itemsize
2206+
array_check = (b.shape_allocated[0]+1)*b.shape_allocated[1]
2207+
array_check *= np.dtype(b.dtype).itemsize
22072208
self.parse_output(summary, check, arrays=array_check)
22082209

22092210
def test_overrides(self, caplog):

0 commit comments

Comments
 (0)