From 0930ee5a74d4ffb0dca8c502e595e2f634c346db Mon Sep 17 00:00:00 2001 From: Declan Lynch Date: Fri, 27 Oct 2023 12:29:38 -0400 Subject: [PATCH] Update Structurize-Export to 1.17.0 And Fix Tests --- build.gradle.kts | 2 +- .../site/C4PlantUmlExporterWithElementLinksTest.kt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index ca1986aa..9312ae90 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,7 +22,7 @@ dependencies { implementation("com.structurizr:structurizr-core:1.27.0") implementation("com.structurizr:structurizr-dsl:1.32.0") - implementation("com.structurizr:structurizr-export:1.16.1") + implementation("com.structurizr:structurizr-export:1.17.0") implementation("net.sourceforge.plantuml:plantuml:1.2023.12") diff --git a/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt b/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt index f42b9c16..b9918f1d 100644 --- a/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt +++ b/src/test/kotlin/nl/avisi/structurizr/site/generatr/site/C4PlantUmlExporterWithElementLinksTest.kt @@ -71,7 +71,7 @@ class C4PlantUmlExporterWithElementLinksTest { System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-1/container/") System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-2/context/") - Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) } @@ -118,7 +118,7 @@ class C4PlantUmlExporterWithElementLinksTest { Component(System1.Container1.Component1, "Component 1", ${'$'}techn="", ${'$'}descr="", ${'$'}tags="", ${'$'}link="") } - Rel_D(System1.Container1.Component1, System1.Container2, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System1.Container1.Component1, System1.Container2, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) } @@ -135,7 +135,7 @@ class C4PlantUmlExporterWithElementLinksTest { System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="") System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../system-2/context/") - Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) } @@ -152,7 +152,7 @@ class C4PlantUmlExporterWithElementLinksTest { System(System1, "System 1", ${'$'}descr="", ${'$'}tags="", ${'$'}link="") System(System2, "System 2", ${'$'}descr="", ${'$'}tags="", ${'$'}link="../../system-2/context/") - Rel_D(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") + Rel(System2, System1, "uses", ${'$'}techn="", ${'$'}tags="", ${'$'}link="") """.trimIndent() ) }