Skip to content

Commit

Permalink
Fix test on 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darsnack committed Feb 12, 2022
1 parent e32fd5d commit bf7228b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ module A
bson("test_25_dataframe.bson", Dict(:d=>d))
end

struct NoInit
x::Int

NoInit() = new()
end

@testset "BSON" begin

@testset "Primitive Types" begin
Expand Down Expand Up @@ -112,11 +118,6 @@ end
x[4] = "d"
@test_broken roundtrip_equal(Dict(:x => x))

struct NoInit
x::Int

NoInit() = new()
end
x = NoInit()
@test roundtrip_equal(x)
end
Expand Down

0 comments on commit bf7228b

Please sign in to comment.