summaryrefslogtreecommitdiff
path: root/numpy/random/tests
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-06-25 17:56:47 -0600
committerGitHub <noreply@github.com>2019-06-25 17:56:47 -0600
commit8a0c54ac0442dd1bf7d60f3ea5e2c578ae71959f (patch)
tree03bbc32f0106e85c00eb2d91d80eae0162f912c5 /numpy/random/tests
parent0487fb02618a81c9a1b1e7fd5a294eb337e6ba5b (diff)
downloadnumpy-8a0c54ac0442dd1bf7d60f3ea5e2c578ae71959f.tar.gz
BUG: Fix missing SeedSequence import.
Diffstat (limited to 'numpy/random/tests')
-rw-r--r--numpy/random/tests/test_direct.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/random/tests/test_direct.py b/numpy/random/tests/test_direct.py
index d635d801b..38d21062b 100644
--- a/numpy/random/tests/test_direct.py
+++ b/numpy/random/tests/test_direct.py
@@ -6,7 +6,9 @@ from numpy.testing import (assert_equal, assert_allclose, assert_array_equal,
assert_raises)
import pytest
-from numpy.random import (Generator, MT19937, PCG64, Philox, RandomState)
+from numpy.random import (
+ Generator, MT19937, PCG64, Philox, RandomState, SeedSequence
+)
from numpy.random.common import interface
try: