Skip to content

Commit 8b804ff

Browse files
committed
fixup
1 parent b3965e5 commit 8b804ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_hashlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def get_fips_mode():
9090
# bpo-46913: Don't test the _sha3 extension on a Python UBSAN build
9191
# TODO(gh-99108): Revisit this after _sha3 uses HACL*.
9292
SKIP_SHA3 = _sha3 is None or support.check_sanitizer(ub=True)
93-
requires_sha3 = unittest.skipUnkess(not SKIP_SHA3, 'requires _sha3')
93+
requires_sha3 = unittest.skipUnless(not SKIP_SHA3, 'requires _sha3')
9494

9595

9696
def hexstr(s):

0 commit comments

Comments
 (0)