Skip to content

Commit 358449b

Browse files
committed
Merge pull request #14 from jbn/master
clear deprecation warnings for 0.4.0-RC1
2 parents 247184d + e998ac7 commit 358449b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using SortingAlgorithms
33

44
a = rand(1:10000, 1000)
55

6-
for alg in {TimSort, HeapSort, RadixSort}
6+
for alg in [TimSort, HeapSort, RadixSort]
77
b = sort(a, alg=alg)
88
@test issorted(b)
99
ix = sortperm(a, alg=alg)

0 commit comments

Comments
 (0)