Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 9d6dafa

Browse files
committed
testing
1 parent 6b84cb4 commit 9d6dafa

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/test_unit.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def test_fam_constructor_array_int_d():
9191
for k in a1:
9292
assert k in fam
9393

94+
9495
# ------------------------------------------------------------------------------
9596

9697

@@ -140,7 +141,8 @@ def test_fam_constructor_array_unicode_d():
140141
a1 = np.array(["", "\x000"], dtype="U2")
141142
a1.flags.writeable = False
142143
fam = FrozenAutoMap(a1)
143-
import ipdb; ipdb.set_trace()
144+
assert len(fam) == 2
145+
assert list(fam) == ["", "\x000"]
144146

145147

146148
def test_fam_copy_array_unicode_a():

0 commit comments

Comments
 (0)