Skip to content

Commit

Permalink
Fix unary func test
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Oct 21, 2015
1 parent edd4ffc commit 0797e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_cumath.py
Expand Up @@ -180,7 +180,7 @@ def test_unary_func_kwargs(self):
np.random.seed(1)
A = (np.random.random(s)*(b-a) + a).astype(dtype)
if complex:
A += (np.random.random(s)*(b-a) + a)*1j
A = A + (np.random.random(s)*(b-a) + a)*1j

np.random.seed(1)
A = (np.random.random(s)*(b-a) + a).astype(dtype)
Expand Down

0 comments on commit 0797e93

Please sign in to comment.