Skip to content

Commit

Permalink
fix the one failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Shashi Gowda committed Aug 7, 2018
1 parent d97da14 commit 6787ba6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/test_sorted_containers.jl
Expand Up @@ -1167,8 +1167,7 @@ eq(::CaseInsensitive, a, b) = isequal(lowercase(a), lowercase(b))
m2 = SortedDict{String,Int}()
@test_throws BoundsError println(first(m2))
@test_throws BoundsError println(last(m2))
state1 = DataStructures.start(m2)
@test_throws BoundsError iterate(m2, state1)
@test iterate(m2) === nothing
i1 = findkey(m,"a")
delete!((m,i1))
i2 = findkey(m,"bb")
Expand Down

0 comments on commit 6787ba6

Please sign in to comment.