Skip to content

Commit fbf984e

Browse files
authored
fix brackets
1 parent 613042e commit fbf984e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_implicit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ def test_model(self):
2828
model.fit(counts, show_progress=False)
2929
rows, cols = model.item_factors, model.user_factors
3030

31-
assert not np.isnan(np.sum(tonumpy(cols))
32-
assert not np.isnan(np.sum(tonumpy(rows))
31+
assert not np.isnan(np.sum(tonumpy(cols)))
32+
assert not np.isnan(np.sum(tonumpy(rows)))
3333

3434

3535
def tonumpy(x):

0 commit comments

Comments
 (0)