Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
david-pl committed Aug 20, 2022
1 parent f83b4fd commit db7242f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/test_timeevolution_abstractdata.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Base.size(A::TestData) = size(A.x)
Base.getindex(A::TestData, inds...) = getindex(A.x, inds...)
Base.setindex!(A::TestData, val, inds...) = setindex!(A.x, val, inds...)
Base.similar(A::TestData, dims::Int...) = TestData(similar(A.x,dims...))
Base.zero(A::TestData) = TestData(zero(A.x))

@testset "abstract-data" begin

Expand Down

0 comments on commit db7242f

Please sign in to comment.