Skip to content

Commit 7233b20

Browse files
committed
fix: update gqa test assertion to match jax error message
1 parent eea7502 commit 7233b20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/nnx/nn/gqa_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_gqa_invalid_heads(self):
3030
assert False, "Should have raised ValueError"
3131
except ValueError as e:
3232
# Fixed expectation to match your code's error message
33-
assert "must be multiple" in str(e)
33+
assert "must be a multiple" in str(e)
3434

3535
def test_gqa_parity_with_jax(self):
3636
class DummyModule(nnx.Module):

0 commit comments

Comments
 (0)