From dc812d286eca8be82c0e5051a92066ab01c26f32 Mon Sep 17 00:00:00 2001 From: Maarten Pronk Date: Mon, 13 Jun 2022 10:11:58 +0200 Subject: [PATCH] Fixed typo in test. --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 23372c5..35a2693 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -62,7 +62,7 @@ end @test df.a[1] == 1 @test df.b[end] == 10 @test df.a[1] isa UInt16 - @test df.a[1] isa Int8 + @test df.b[end] isa Int8 rm("data/test2.parquet") end end