From 2589d2d22d86424c8985ba3bef21a2f382f3cde5 Mon Sep 17 00:00:00 2001 From: Michael Peels Date: Wed, 11 Dec 2024 15:31:19 -0500 Subject: [PATCH] Fix property name --- deduplication/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deduplication/build.gradle b/deduplication/build.gradle index 37d339047..b8c952482 100644 --- a/deduplication/build.gradle +++ b/deduplication/build.gradle @@ -59,3 +59,9 @@ bootRun { tasks.named('test') { useJUnitPlatform() } + +test { + if (System.getProperty("testing.database.mssql.image") != null) { + systemProperty "testing.database.mssql.image", System.getProperty("testing.database.mssql.image") + } +}