summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-07-01 14:56:55 +0200
committerRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-07-01 14:56:55 +0200
commit64dba525bb5e0ac7952871df859df59fecf19a65 (patch)
treef64a13102691c4639c3f7b0577d6ce3a06525881 /test
parent385d4a543898a7ddb842b983b5f174f8c80636fc (diff)
Formatting
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")