mirror of https://github.com/google/oss-fuzz.git
typing_extensions: Fix "isinsance" typo (#12554)
Fixes this error during coverage builds: ``` === Uncaught Python exception: === NameError: name 'isinsance' is not defined Traceback (most recent call last): File "fuzz_typing_extensions.py", line 65, in TestOneInput NameError: name 'isinsance' is not defined ``` Co-authored-by: Vitor Guidi <vitorguidi@gmail.com>
This commit is contained in:
parent
2091719f51
commit
16f697c70b
|
@ -51,7 +51,7 @@ def TestOneInput(data):
|
|||
except:
|
||||
d1 = None
|
||||
d2 = None
|
||||
if isinstance(d1, dict) and isinsance(d2, dict):
|
||||
if isinstance(d1, dict) and isinstance(d2, dict):
|
||||
if d1 != d2:
|
||||
assert TypedDict('D1', d1) != TypedDict('D2', d2)
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue