diff --git a/tests/io/test_cfradial.py b/tests/io/test_cfradial.py index 1f915229bc..6b6115dc50 100644 --- a/tests/io/test_cfradial.py +++ b/tests/io/test_cfradial.py @@ -486,7 +486,7 @@ def attribute_equal(class1, class2, key, allow_str_case_diff=True): a1 = getattr(class1, key) a2 = getattr(class2, key) - assert isinstance(a1, a2) + assert type(a1) == type(a2) # noqa if isinstance(a1, str) and allow_str_case_diff: assert a1.upper() == a2.upper()