# HG changeset patch # User Paul Boddie # Date 1624405962 -7200 # Node ID d5f80f46d2674e3878f0ef2bd3a1d6dee0df8728 # Parent 357c34868faf729504973857b9c1abc339e070de Fixed integer instance tests. diff -r 357c34868faf -r d5f80f46d267 tests/identity.py --- a/tests/identity.py Wed Jun 23 01:17:14 2021 +0200 +++ b/tests/identity.py Wed Jun 23 01:52:42 2021 +0200 @@ -1,6 +1,6 @@ print isinstance("string", string) # True -print isinstance("string", int) # False -print isinstance(123, int) # True +print isinstance("string", integer) # False +print isinstance(123, integer) # True print isinstance(123, string) # False print