From 3dcb110de158e50b912d5b901d710ef593e83240 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 5 Feb 2025 01:22:27 +0100 Subject: [PATCH] Fixed the names for some of the cases for the Template enumeration in the library target. --- Library/Sources/Internal/Enumerations/Template.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Sources/Internal/Enumerations/Template.swift b/Library/Sources/Internal/Enumerations/Template.swift index e43ac6d..4d45a7c 100644 --- a/Library/Sources/Internal/Enumerations/Template.swift +++ b/Library/Sources/Internal/Enumerations/Template.swift @@ -1,6 +1,6 @@ enum Template: String { - case app = "App" - case appTests = "AppTests" + case app = "App/App" + case appTests = "Test/AppTests" case package = "Package" }