diff options
| author | Peter LaFosse <peter@vector35.com> | 2022-03-29 07:20:41 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-03-29 07:47:36 -0400 |
| commit | 79ca1197fc3a6a20450d6838f158c7e7bb8298fa (patch) | |
| tree | db49257bf0fc2d619562a0a3911f25a3b199cbed /suite/api_test.py | |
| parent | 1291c94d3d5592203200c8e048c9ddc851e812e1 (diff) | |
Add various type hints
Diffstat (limited to 'suite/api_test.py')
| -rw-r--r-- | suite/api_test.py | 2 |
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): |
