Skip to content

Commit

Permalink
naming the test with the pr number
Browse files Browse the repository at this point in the history
  • Loading branch information
poncito committed Apr 11, 2024
1 parent f7c73f3 commit 55956be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 55956be

Please sign in to comment.