From 79ca1197fc3a6a20450d6838f158c7e7bb8298fa Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Tue, 29 Mar 2022 07:20:41 -0400 Subject: Add various type hints --- suite/api_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'suite/api_test.py') diff --git a/suite/api_test.py b/suite/api_test.py index ea8378a8..167af3af 100644 --- a/suite/api_test.py +++ b/suite/api_test.py @@ -799,7 +799,7 @@ class TypeTest(unittest.TestCase): b = TypeBuilder.array(ib, 4) assert len(b) == len(ib) * 4 assert b.count == 4 - assert b.element_type == ib.immutable_copy() + assert b.element_type == ib assert b == b.immutable_copy().mutable_copy(), "ArrayBuilder failed to round trip mutability" def test_StructureBuilder(self): -- cgit v1.3.1