summaryrefslogtreecommitdiff
path: root/suite/api_test.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2022-03-29 07:20:41 -0400
committerPeter LaFosse <peter@vector35.com>2022-03-29 07:47:36 -0400
commit79ca1197fc3a6a20450d6838f158c7e7bb8298fa (patch)
treedb49257bf0fc2d619562a0a3911f25a3b199cbed /suite/api_test.py
parent1291c94d3d5592203200c8e048c9ddc851e812e1 (diff)
Add various type hints
Diffstat (limited to 'suite/api_test.py')
-rw-r--r--suite/api_test.py2
1 files changed, 1 insertions, 1 deletions
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):