Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Jan 23, 2024
1 parent 9ff93f3 commit f97e3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras/ops/math_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ def test_solve_call(self):
b = np.array([[9, 8], [5, 4]], dtype=np.float32)
output = solve_op.call(a, b)
expected_output = np.linalg.solve(a, b)
np.testing.assert_allclose(output, expected_output, atol=1e-6)
self.assertAllClose(output, expected_output, atol=1e-6)


class FFT2Test(testing.TestCase):
Expand Down

0 comments on commit f97e3c7

Please sign in to comment.