From a26f8fa9ecc6ae5641c5c05e0e4d9753c02925a0 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Thu, 26 Dec 2019 12:54:43 -0800 Subject: [PATCH] Better tests for copy(_, ::DataFrame) --- test/test_copy.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_copy.jl b/test/test_copy.jl index 897d516fa3..6eb9c8b95c 100644 --- a/test/test_copy.jl +++ b/test/test_copy.jl @@ -15,7 +15,7 @@ end @testset "$copy" for copy in [copy, tcopy, dcopy] @testset "$copy(_, ::$(prettytypeof(src)))" for src in Any[ - DataFrame(a=[1], b=[2]), + DataFrame(a=[1:4;], b=[5:8;]), StructVector(a=[1:4;], b=[5:8;]), Table(a=[1:4;], b=[5:8;]), ]