From 593e27a33f9eddebee690a2d415a1fbc4e8b4c74 Mon Sep 17 00:00:00 2001 From: lbonaldo Date: Sun, 12 Nov 2023 14:58:28 -0500 Subject: [PATCH] Fix compatibility with Julia 1.6 --- test/test_time_domain_reduction.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_time_domain_reduction.jl b/test/test_time_domain_reduction.jl index ccd7aba09e..0de3196c15 100644 --- a/test/test_time_domain_reduction.jl +++ b/test/test_time_domain_reduction.jl @@ -53,7 +53,7 @@ Test.@test round(R[2], digits = 1) == 1 # Rand index should be equal to 1 Test.@test round(I, digits = 1) == 1 # Mutual information should be equal to 1 # test if output files are correct -Test.@testset for file in filter(endswith(".csv"), readdir(TDR_Results_true)) +for file in filter(endswith(".csv"), readdir(TDR_Results_true)) Test.@test cmp_csv(joinpath(TDR_Results_test, file), joinpath(TDR_Results_true, file)) end