From 55956be399edd785c0f6345dac1874f6272998ba Mon Sep 17 00:00:00 2001 From: Romain Poncet Date: Thu, 11 Apr 2024 17:55:55 +0000 Subject: [PATCH] naming the test with the pr number --- test/runtests.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index c2a934ff..9fa86a70 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1043,16 +1043,16 @@ end end end - @testset "# tbd" begin - struct A + @testset "# 504" begin + struct Foo504 x::Int end - struct B - a::A + struct Bar504 + a::Foo504 end - v = [B(A(i)) for i =1:3] + v = [Bar504(Foo504(i)) for i =1:3] io = IOBuffer() Arrow.write(io, v; file=false) seekstart(io)