Skip to content

Commit 22324fc

Browse files
committed
Fix accidental typo in test_empirical_sinkhorn
1 parent e1ed50b commit 22324fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_bregman.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def test_empirical_sinkhorn():
301301
M = ot.dist(X_s, X_t)
302302
M_m = ot.dist(X_s, X_t, metric='minkowski')
303303

304-
G_sqe = ot.bregman.empirical_sinkhorn(X_s, X_t, 1, )
304+
G_sqe = ot.bregman.empirical_sinkhorn(X_s, X_t, 1)
305305
sinkhorn_sqe = ot.sinkhorn(a, b, M, 1)
306306

307307
G_log, log_es = ot.bregman.empirical_sinkhorn(X_s, X_t, 0.1, log=True)

0 commit comments

Comments
 (0)