Skip to content

Commit 5c35daf

Browse files
authored
Fix syntax error in from_lookup_table call
1 parent 0dac141 commit 5c35daf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/b/test_b_jax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def test_from_lookup_table(self):
219219
]
220220
)
221221

222-
f = BernsteinPoly.from_lookup_table(k, x,, y, non_negative=True)
222+
f = BernsteinPoly.from_lookup_table(k, x, y, non_negative=True)
223223
c = f.prior()
224224
c_expected = np.arange(np.prod(np.asarray(d))).reshape(d) + 1.0
225225
self.assertEqual(c_expected.shape, c.shape)

0 commit comments

Comments
 (0)