File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 455455 df2 = @view df[:, 1 : 2 ]
456456 @test typeof (df1) != typeof (df2)
457457
458- @test_throws ArgumentError reduce (vcat, ())
458+ @test_throws Union{MethodError, ArgumentError} reduce (vcat, ())
459459 @test reduce (vcat, DataFrame[]) == DataFrame ()
460460 @test reduce (vcat, SubDataFrame[]) == DataFrame ()
461461 @test reduce (vcat, AbstractDataFrame[]) == DataFrame ()
Original file line number Diff line number Diff line change @@ -1198,7 +1198,7 @@ Base.isless(::TestType, ::TestType) = false
11981198 @test typeof (res. y) == typeof (expected. y)
11991199 if m
12001200 gd[1 ][:, :x1c ] .= missing
1201- @test_throws ArgumentError combine (gd, :x1c => f∘ skipmissing => :y )
1201+ @test_throws Union{MethodError, ArgumentError} combine (gd, :x1c => f∘ skipmissing => :y )
12021202 end
12031203 end
12041204 @test combine (gd, :x1 => maximum => :y , :x2 => sum => :z ) ≅
You can’t perform that action at this time.
0 commit comments