From f4700250169c117d1779a3c8656932848b059ad4 Mon Sep 17 00:00:00 2001 From: lkdvos Date: Thu, 5 Oct 2023 18:31:42 +0200 Subject: [PATCH] Update syntax --- test/runtests.jl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 31f14a36..7809417d 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,7 +2,15 @@ using Test, Random, TensorKit include("choosetests.jl") -(; tests, sectors, exit_on_error, use_revise, seed) = choosetests(ARGS) + +choices = choosetests(ARGS) + +tests = choices.tests +sectors = choices.sectors +exit_on_error = choices.exit_on_error +use_revise = choices.use_revise +seed = choices.seed + module Utility include("utility.jl")