Skip to content

Commit

Permalink
fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed May 16, 2022
1 parent 07e2ade commit a822612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spynnaker_integration_tests/test_views/test_views_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def set_with_views(self):
d = v2viewmatrix[:, i]
assert (len(a) == len(b))
for j in range(len(a)):
assert (a[j] == b[j] == c[j], d[j])
assert (a[j] == b[j] == c[j] == d[j])

assert (numpy.array_equal(v2allconvert, v2alltuple))
assert (numpy.array_equal(v2allconvert, v2viewtuple))
Expand Down

0 comments on commit a822612

Please sign in to comment.