From 0f6dccd89dc9e2ac123b52cc69032d952991e2a0 Mon Sep 17 00:00:00 2001 From: Milan Bouchet-Valat Date: Mon, 29 Aug 2016 18:02:22 +0200 Subject: [PATCH] Remove another FIXME This is a much more general issue (JuliaStats/NullableArrays.jl#85) which can be tackled later. --- test/data.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/data.jl b/test/data.jl index 56a288fa92..d497704965 100644 --- a/test/data.jl +++ b/test/data.jl @@ -189,7 +189,7 @@ module TestData v2 = randn(5)) m1 = join(df1, df2, on = :a) - @test isequal(m1[:a], NullableArray([1, 2, 3, 4, 5])) # FIXME: shouldn't need NullableArray on the RHS + @test isequal(m1[:a], NullableArray([1, 2, 3, 4, 5])) # TODO: Re-enable m2 = join(df1, df2, on = :a, kind = :outer) # @test isequal(m2[:b2],