From 407453d4c29374650f703d96e95eb05f07d836ea Mon Sep 17 00:00:00 2001 From: lindnemi Date: Mon, 16 Oct 2023 12:33:42 +0200 Subject: [PATCH] minor fix --- test/ComponentFunctions_test.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/ComponentFunctions_test.jl b/test/ComponentFunctions_test.jl index 77ef3ab3..230c8583 100644 --- a/test/ComponentFunctions_test.jl +++ b/test/ComponentFunctions_test.jl @@ -20,9 +20,11 @@ using LinearAlgebra end end + j = (a,b,c,d,e,f,g) -> nothing + eundir = StaticEdge(; f=f, dim=2, coupling = :undirected) eundef = StaticEdge(; f=f, dim=2) - deundef = StaticDelayEdge(;f=f, dim=2) + deundef = StaticDelayEdge(;f=j, dim=2) mixed_edges = [eundef, eundef, deundef]