Skip to content

Commit 7ff8157

Browse files
authored
Update test/permutations.jl
1 parent ed2cd2e commit 7ff8157

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/permutations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ end
6060
@test collect(multiset_permutations("aabc", 2)) == Any[['a', 'a'], ['a', 'b'], ['a', 'c'], ['b', 'a'],
6161
['b', 'c'], ['c', 'a'], ['c', 'b']]
6262
@test collect(multiset_permutations("aabcc", 5)) == collect(multiset_permutations("aabcc"))
63-
@test collect(multiset_permutations("aabc")) == Any[Char[]]
63+
@test collect(multiset_permutations("")) == Any[Char[]]
6464
@test collect(multiset_permutations("aabc", 0)) == Any[Char[]]
6565
@test collect(multiset_permutations("aabc", -1)) == Any[]
6666
@test collect(multiset_permutations("", 1)) == Any[]

0 commit comments

Comments
 (0)