From cece927b3f924280aeb6681d19282870d4b65a2f Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 6 Sep 2026 08:47:16 +1000 Subject: [PATCH] chore: Add known ticket issues to TODOs --- build/Tasks/CopyOutputTask.cs | 4 ++-- tests/ModuleTests/Git/AddRegistrationTests.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Tasks/CopyOutputTask.cs b/build/Tasks/CopyOutputTask.cs index 9047fb2..1bcd241 100644 --- a/build/Tasks/CopyOutputTask.cs +++ b/build/Tasks/CopyOutputTask.cs @@ -15,8 +15,8 @@ public class CopyOutputTask : FrostingTask public override void Run(BuildContext context) { var powershellModuleName = "PowershellModule"; - // TODO: probably don't create full file locations when I can pass the output dir in and have the script - // make the path + // TODO: [#10] Refactor file paths used in build project to be more explict and easier to understand + // Probably don't create full file locations when I can pass the output dir in and have the script make the path var scriptParams = new { PowershellModuleFileLocation = $"{context.PowershellModuleOutputDir}/{powershellModuleName}.psd1", diff --git a/tests/ModuleTests/Git/AddRegistrationTests.cs b/tests/ModuleTests/Git/AddRegistrationTests.cs index bdecf43..883e595 100644 --- a/tests/ModuleTests/Git/AddRegistrationTests.cs +++ b/tests/ModuleTests/Git/AddRegistrationTests.cs @@ -1,10 +1,10 @@ using System.Text; -using ModuleCore.Calendar; using ModuleCore.Git; using ModuleTests.Git.TestData; namespace ModuleTests.Git; +// TODO: [#12] GitRepoRegistration tests should reset database at start of each test public class AddRegistrationTests { private static readonly VerifySettings Settings;