Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Oct 15, 2023
1 parent 0ac3a89 commit d0d3136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/iteration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ end
@test mapcols(x -> 2x, df, cols=:) == DataFrame(a1=[2, 4], a2=[4, 6], b=[6, 8])

df2 = mapcols(x -> 2x, df, cols="b")
@test df2.a1 == df.a && df2.a1 !== df.a
@test df2.a2 == df.a && df2.a2 !== df.a
@test df2.a1 == df.a1 && df2.a1 !== df.a1
@test df2.a2 == df.a2 && df2.a2 !== df.a2
@test df2.b == 2*df.b
end

Expand Down

0 comments on commit d0d3136

Please sign in to comment.