diff --git a/tests/test_utils_typecast.py b/tests/test_utils_typecast.py index b4054ba3b..b98c84d93 100644 --- a/tests/test_utils_typecast.py +++ b/tests/test_utils_typecast.py @@ -31,7 +31,7 @@ def test_downcast_success(): def test_upcast_success(): b = Bulldog() assert b.snore() == "woooooof" - assert not hasattr(b, "speak") + assert b.speak() == "woof" #from Dog upcast(b, Dog) assert b.speak() == "woof" assert not hasattr(b, "snore")