Fix typo in shape_poly_test.py

overriden -> overridden
This commit is contained in:
Ikko Eltociear Ashimine 2023-08-25 00:10:13 +09:00 committed by GitHub
parent b4f7928a81
commit 2c9de9d9d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -568,7 +568,7 @@ class PolyHarness(Harness):
def log_message(extra: str):
return f"[{tst._testMethodName}]: {extra}"
# Check that we have overriden the jax.config flags
# Check that we have overridden the jax.config flags
for fname, fvalue in self.override_jax_config_flags.items():
tst.assertEqual(getattr(jax.config, fname), fvalue, (
f"Flag {fname} current value {getattr(jax.config, fname)} != {fvalue}"))