From 48569d20f5114e898c2ebcead966b9f5530696b9 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Wed, 14 Feb 2024 14:09:22 +1300 Subject: [PATCH] Stop including files multiple times in tests (#259) --- test/matmul.jl | 2 -- test/rewrite.jl | 2 -- 2 files changed, 4 deletions(-) diff --git a/test/matmul.jl b/test/matmul.jl index 9fdb2d07..2466cd90 100644 --- a/test/matmul.jl +++ b/test/matmul.jl @@ -7,8 +7,6 @@ using Test import MutableArithmetics as MA -include("utilities.jl") - struct CustomArray{T,N} <: AbstractArray{T,N} end import LinearAlgebra diff --git a/test/rewrite.jl b/test/rewrite.jl index 6b3419df..73216a88 100644 --- a/test/rewrite.jl +++ b/test/rewrite.jl @@ -33,8 +33,6 @@ macro test_macro_throws(error, m) end end -include("dummy.jl") - function is_supported_test(T) @test MA.Test._is_supported(*, T, T) @test MA.Test._is_supported(+, T, T)