Skip to content

Commit acd88d8

Browse files
committed
Fix integer_partitions test
1 parent a50b50d commit acd88d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/basic.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@
4545

4646
# integer_partitions
4747
@test integer_partitions(5) == Any[[1, 1, 1, 1, 1], [2, 1, 1, 1], [2, 2, 1], [3, 1, 1], [3, 2], [4, 1], [5]]
48-
@test_throws DomainError partitions(-1)
48+
@test_throws DomainError integer_partitions(-1)
4949

0 commit comments

Comments
 (0)