summaryrefslogtreecommitdiff
path: root/src/python/test/test_time_delay.py
diff options
context:
space:
mode:
authormtakenouchi <m.takenouchi@jp.fujitsu.com>2020-02-14 19:08:50 +0900
committermtakenouchi <m.takenouchi@jp.fujitsu.com>2020-02-14 19:08:50 +0900
commit39873c0cf43ca7352dddeab8c1cc6a3fc40a2e58 (patch)
tree188b2906ebb9b882974cc98f1a93e476b986dd58 /src/python/test/test_time_delay.py
parent1c0f48fb26bb2e606dfe0a22e62618357686e2c2 (diff)
Update test_time_delay.py
Diffstat (limited to 'src/python/test/test_time_delay.py')
-rwxr-xr-xsrc/python/test/test_time_delay.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/python/test/test_time_delay.py b/src/python/test/test_time_delay.py
index 3b586ad2..7b6562a5 100755
--- a/src/python/test/test_time_delay.py
+++ b/src/python/test/test_time_delay.py
@@ -7,7 +7,8 @@ def test_normal():
# Normal case.
prep = TimeDelayEmbedding()
attractor = prep(ts)
- assert (attractor[0] == np.array([1, 2, 3]))
+ assert (attractor[0] == np.array([1, 2, 3])
+ print(attractor[0].all()))
assert (attractor[1] == np.array([2, 3, 4]))
assert (attractor[2] == np.array([3, 4, 5]))
assert (attractor[3] == np.array([4, 5, 6]))