Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix random shuffle
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaiBapchya committed Oct 4, 2019
1 parent 90c548c commit 8d3ea39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nightly/test_large_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test_ndarray_random_randn():
@with_seed()
def test_ndarray_random_shuffle():
a = nd.ones(shape=(LARGE_X, SMALL_Y))
a[-1] == 3 # assign 3 to entire last row
a[-1] = 3 # assign 3 to entire last row
a = nd.random.shuffle(a)
# slice first column from shuffled array
# pass LARGE_X values to numpy instead of LARGE_X*SMALL_Y
Expand Down

0 comments on commit 8d3ea39

Please sign in to comment.