Skip to content

Commit

Permalink
Remove unused tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frankong committed Aug 20, 2019
1 parent 5f6bab0 commit 229ede1
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,3 @@ def f(y):

npt.assert_allclose(
sigma**2, util.monte_carlo_sure(f, y, sigma), atol=1e-3)

def test_ShuffledNumbers(self):
n = 5
idx = util.ShuffledNumbers(n)
x = sorted([idx.next() for _ in range(2 * n)])
npt.assert_allclose(x, [0, 0, 1, 1, 2, 2, 3, 3, 4, 4])

0 comments on commit 229ede1

Please sign in to comment.