Skip to content

Commit

Permalink
Update test_correlation.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi-glitchhg authored Oct 30, 2023
1 parent 288f776 commit 4fb6c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def test_hello():


def test_correlation():
for i in (4,8,10,12,16,22,100,1000):
for i in (4,8,10,12,16,22,100,500):
rand_array = np.random.uniform(0,1,i*i).reshape(i,i)
corr_arr = np.tril(rand_array) + np.triu(rand_array.T,1)
assert (corr_arr!=corr_arr.T).sum().sum() == 0
Expand Down

0 comments on commit 4fb6c04

Please sign in to comment.