Navigation Menu

Skip to content

Commit

Permalink
Remove 'raises' from test fixed by non-contig copy
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jul 13, 2015
1 parent fde69b0 commit 8868442
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/test_gpuarray.py
Expand Up @@ -912,9 +912,7 @@ def test_view_and_strides(self):
assert y.shape == Y.shape
assert y.strides == Y.strides

import pytest
with pytest.raises(AssertionError):
assert (y.get() == X.get()[:3, :5]).all()
assert np.array_equal(y.get(), X.get()[:3, :5])

@mark_cuda_test
def test_scalar_comparisons(self):
Expand Down

0 comments on commit 8868442

Please sign in to comment.