Skip to content

Commit

Permalink
add missing @test (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
glou-nes authored Dec 10, 2024
1 parent d82b31a commit e40d715
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/basic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ end

@testset "ConcreteRArray" begin
c = Reactant.ConcreteRArray(ones(50, 70))
similar(c)
sim_c = similar(c)
@test typeof(sim_c) == typeof(c) && size(sim_c) == size(sim_c)
end

@testset "Reactant.@code_hlo" begin
Expand Down

0 comments on commit e40d715

Please sign in to comment.