Skip to content

Commit 3e761d4

Browse files
author
Pietro Vertechi
authored
Merge pull request #30 from piever/pv/test
fix test for julia 1.0.1
2 parents ee0f709 + 7a444ec commit 3e761d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 1.0.2
1+
julia 1.0
22
IndexedTables 0.8.1
33
JuliaDB 0.9.0
44
Reexport

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ end
150150

151151
@testset "applychunked" begin
152152
t1 = @apply iris1 begin
153-
@where :Species == "setosa"
153+
@where :SepalLength != 5.1
154154
@transform {Ratio = :SepalLength / :SepalWidth}
155155
end
156156
t2 = @applychunked iris2 begin
157-
@where :Species == "setosa"
157+
@where :SepalLength != 5.1
158158
@transform {Ratio = :SepalLength / :SepalWidth}
159159
end
160160
@test t1 == collect(t2)

0 commit comments

Comments
 (0)