From 43de3ae66e6b18eef1c10d6a314883efb3c81501 Mon Sep 17 00:00:00 2001 From: Jeff Fessler Date: Sat, 18 May 2024 22:21:46 -0400 Subject: [PATCH] Fix aqua --- test/aqua.jl | 2 +- test/runtests.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/aqua.jl b/test/aqua.jl index 452e484..47f4ac7 100644 --- a/test/aqua.jl +++ b/test/aqua.jl @@ -3,5 +3,5 @@ import Aqua using Test: @testset @testset "aqua" begin - Aqua.test_all(Sinograms: Sinograms) + Aqua.test_all(Sinograms) end diff --git a/test/runtests.jl b/test/runtests.jl index b600052..5e3da59 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,6 +1,6 @@ # runtests.jl -using Sinograms +using Sinograms: Sinograms using Test: @test, @test_throws, @testset, detect_ambiguities include("aqua.jl")