Skip to content

Commit 115f407

Browse files
committed
-
1 parent b5ff074 commit 115f407

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source_py3/test_python_toolbox/test_combi/test_perm_space.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ def test_perm_spaces():
9696
first_perm
9797

9898

99-
assert isinstance(first_perm.items, combi.perm.PermItems)
99+
assert isinstance(first_perm.items, combi.perming.perm.PermItems)
100100
assert first_perm.items[2] == (2, 2)
101101
assert repr(first_perm.items) == '<PermItems: %s>' % repr(first_perm)
102-
assert isinstance(first_perm.as_dictoid, combi.perm.PermAsDictoid)
102+
assert isinstance(first_perm.as_dictoid, combi.perming.perm.PermAsDictoid)
103103
assert first_perm.as_dictoid[2] == 2
104104
assert dict(first_perm.as_dictoid) == {0: 0, 1: 1, 2: 2, 3: 3}
105105
assert not (first_perm != first_perm)

0 commit comments

Comments
 (0)