From 5cd5fbc0286c6b6013052a59235d4d830e7f08a1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Apr 2026 17:42:35 +0000 Subject: [PATCH 1/2] Initial plan From 2ffd75385f9cf129396f75ff53917d5d4e58f8d1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Apr 2026 18:00:24 +0000 Subject: [PATCH 2/2] fix: update PITest config to replace deleted FlowTemplateParser references with TemplateParser Agent-Logs-Url: https://github.com/MaximumTrainer/OpenFactstore/sessions/e96ea874-12a9-47b5-af52-647d7f33486e Co-authored-by: MaximumTrainer <1376575+MaximumTrainer@users.noreply.github.com> --- backend/build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index d933d7c..358965a 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -88,7 +88,7 @@ configure { avoidCallsTo.set(setOf("kotlin.jvm.internal")) mutators.set(setOf("STRONGER")) targetClasses.set(setOf( - "com.factstore.application.FlowTemplateParser", + "com.factstore.application.template.TemplateParser", "com.factstore.application.SlackCommandParser", "com.factstore.application.ScopeFilter", "com.factstore.application.CiContextResolver", @@ -96,7 +96,8 @@ configure { "com.factstore.application.SecurityScanService" )) targetTests.set(setOf( - "com.factstore.FlowTemplateParserTest", + "com.factstore.TemplateParserTest", + "com.factstore.application.TemplateParserTest", "com.factstore.SlackCommandParserTest", "com.factstore.SnapshotScopeFilterTest", "com.factstore.CiContextResolverTest",