From 0737cc7671b5572f4b7b6bc74a3ccd6f322d1dab Mon Sep 17 00:00:00 2001 From: rafaqz Date: Thu, 2 Nov 2023 19:06:18 +0100 Subject: [PATCH] fix Interfaces tests --- test/advanced.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/advanced.jl b/test/advanced.jl index f653680..32696b3 100644 --- a/test/advanced.jl +++ b/test/advanced.jl @@ -100,5 +100,5 @@ In summary, there are two things to remember: using Test #src @test Interfaces.test(Group.GroupInterface, Float64) #src -@test !Interfaces.test(Group.GroupInterface, int_pairs) #src +@test !Interfaces.test(Group.GroupInterface, Int, int_pairs) #src @test_throws ArgumentError Interfaces.test(Group.GroupInterface, Float64, int_pairs) #src