summaryrefslogtreecommitdiff
path: root/test/test_ot.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2019-12-02 11:31:32 +0100
committerRémi Flamary <remi.flamary@gmail.com>2019-12-02 11:31:32 +0100
commita6a654de5e78dd388a793fbd26f60045b05d519c (patch)
treea8e3049507db770892d05c7747b2bf083c2d9af8 /test/test_ot.py
parent57321bd0172c97b77dfc8b14972c18d063b6dda8 (diff)
proper documentation and parameter
Diffstat (limited to 'test/test_ot.py')
-rw-r--r--test/test_ot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ot.py b/test/test_ot.py
index 4d59e12..7b44fd1 100644
--- a/test/test_ot.py
+++ b/test/test_ot.py
@@ -131,7 +131,7 @@ def test_emd_sparse():
G = ot.emd([], [], M)
- Gs = ot.emd([], [], M, sparse=True)
+ Gs = ot.emd([], [], M, dense=False)
# check G is the same
np.testing.assert_allclose(G, Gs.todense())