Skip to content

Commit

Permalink
Fix testing on 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
RobBlackwell committed Jul 15, 2018
1 parent 4c37171 commit a69aaa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ end
filename = joinpath(dirname(@__FILE__),
"data/WCBjr280_1_1_regions.evr")

regions = collect(regions(filename))
_regions = collect(regions(filename))

@test length(regions) == 68
@test regions[1].classification == "krills"
@test regions[1].regiontype == "1"
@test length(_regions) == 68
@test _regions[1].classification == "krills"
@test _regions[1].regiontype == "1"

0 comments on commit a69aaa5

Please sign in to comment.