From f76974158f3a143eedd5534a76c291f77dc401e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20LOUNES?= Date: Mon, 9 Dec 2024 16:06:49 +0100 Subject: [PATCH] add missing @test --- test/basic.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/basic.jl b/test/basic.jl index 6aac778f28..3aef500201 100644 --- a/test/basic.jl +++ b/test/basic.jl @@ -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