summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_gpu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_gpu.py b/test/test_gpu.py
index 47b8b6d..8e62a74 100644
--- a/test/test_gpu.py
+++ b/test/test_gpu.py
@@ -22,7 +22,7 @@ def test_gpu_old_doctests():
M = [[0., 1.], [1., 0.]]
G = ot.sinkhorn(a, b, M, 1)
np.testing.assert_allclose(G, np.array([[0.36552929, 0.13447071],
- [0.13447071, 0.36552929]]))
+ [0.13447071, 0.36552929]]))
@pytest.mark.skipif(nogpu, reason="No GPU available")