From e1bd84c05ecfaf1c1dc9f191e0d6e3b186adeeb4 Mon Sep 17 00:00:00 2001 From: Scott Date: Sat, 5 Sep 2026 12:26:34 +1000 Subject: [PATCH 1/4] refactor: Remove missed byte order marks --- src/ModuleCore/Calendar/CalendarGenerator.cs | 2 +- src/ModuleCore/Database/DatabaseManager.cs | 2 +- src/ModuleCore/Directory.Build.props | 2 +- src/ModuleCore/Git/GitManager.cs | 2 +- src/ModuleCore/Git/Models/GitRegistration.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ModuleCore/Calendar/CalendarGenerator.cs b/src/ModuleCore/Calendar/CalendarGenerator.cs index 8494fc9..daa81ce 100644 --- a/src/ModuleCore/Calendar/CalendarGenerator.cs +++ b/src/ModuleCore/Calendar/CalendarGenerator.cs @@ -1,4 +1,4 @@ -using System.Globalization; +using System.Globalization; using System.Text; namespace ModuleCore.Calendar; diff --git a/src/ModuleCore/Database/DatabaseManager.cs b/src/ModuleCore/Database/DatabaseManager.cs index 6f6810d..18c9a30 100644 --- a/src/ModuleCore/Database/DatabaseManager.cs +++ b/src/ModuleCore/Database/DatabaseManager.cs @@ -1,4 +1,4 @@ -using SQLite; +using SQLite; namespace ModuleCore.Database; diff --git a/src/ModuleCore/Directory.Build.props b/src/ModuleCore/Directory.Build.props index e0bdda9..dd32fa3 100644 --- a/src/ModuleCore/Directory.Build.props +++ b/src/ModuleCore/Directory.Build.props @@ -1,4 +1,4 @@ - + 0.0.1 dev diff --git a/src/ModuleCore/Git/GitManager.cs b/src/ModuleCore/Git/GitManager.cs index 1312b03..8f0a7f7 100644 --- a/src/ModuleCore/Git/GitManager.cs +++ b/src/ModuleCore/Git/GitManager.cs @@ -1,4 +1,4 @@ -using System.Collections.Concurrent; +using System.Collections.Concurrent; using System.Diagnostics; using ModuleCore.Database; using ModuleCore.Git.Models; diff --git a/src/ModuleCore/Git/Models/GitRegistration.cs b/src/ModuleCore/Git/Models/GitRegistration.cs index 11eea11..1a94184 100644 --- a/src/ModuleCore/Git/Models/GitRegistration.cs +++ b/src/ModuleCore/Git/Models/GitRegistration.cs @@ -1,4 +1,4 @@ -namespace ModuleCore.Git.Models; +namespace ModuleCore.Git.Models; public class GitRegistration { From cb01efd323215a2ea211e0e51cf73eec945dc4ea Mon Sep 17 00:00:00 2001 From: Scott Date: Sat, 5 Sep 2026 12:43:57 +1000 Subject: [PATCH 2/4] feat(git-manager): Update InternalFreshInstance to take a database name --- src/ModuleCore/Git/GitManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ModuleCore/Git/GitManager.cs b/src/ModuleCore/Git/GitManager.cs index 8f0a7f7..b393215 100644 --- a/src/ModuleCore/Git/GitManager.cs +++ b/src/ModuleCore/Git/GitManager.cs @@ -14,10 +14,10 @@ public class GitManager private readonly DatabaseManager _db; private readonly ConcurrentDictionary _registrations; - private GitManager() + private GitManager(string? databaseName = null) { _registrations = new ConcurrentDictionary(); - _db = new DatabaseManager("git.db"); + _db = new DatabaseManager(databaseName ?? "git.db"); InitialiseRegistrations(); } @@ -27,7 +27,7 @@ public class GitManager /// /// Always returns a new clean instance of GitManager /// - internal static GitManager InternalFreshInstance => new(); + internal static GitManager InternalFreshInstance(string databaseName) => new(databaseName); /// /// Creates up any database tables and loads all previously saved git registrations. From cf782211aaec35d266de49807865982272399e22 Mon Sep 17 00:00:00 2001 From: Scott Date: Sat, 5 Sep 2026 12:57:54 +1000 Subject: [PATCH 3/4] fix(git-tests): Create per-test specific databases --- src/ModuleCore/Database/DatabaseManager.cs | 12 ++++++++++ src/ModuleCore/Git/GitManager.cs | 10 ++++++++ tests/ModuleTests/Git/AddRegistrationTests.cs | 24 ++++++++++++++----- 3 files changed, 40 insertions(+), 6 deletions(-) diff --git a/src/ModuleCore/Database/DatabaseManager.cs b/src/ModuleCore/Database/DatabaseManager.cs index 18c9a30..beac4f2 100644 --- a/src/ModuleCore/Database/DatabaseManager.cs +++ b/src/ModuleCore/Database/DatabaseManager.cs @@ -51,6 +51,18 @@ public class DatabaseManager return exists ?? false; } + /// + /// Deletes the current database file. This will cause any future instance methods to fail on database action if + /// a new instance is not created. + /// + /// This method should be avoided unless calling from a test. + /// + /// + internal void DeleteDatabase() + { + _databaseLocation.Delete(); + } + /// /// Removes double dots from the filename and removes the file extension /// diff --git a/src/ModuleCore/Git/GitManager.cs b/src/ModuleCore/Git/GitManager.cs index b393215..bd7a135 100644 --- a/src/ModuleCore/Git/GitManager.cs +++ b/src/ModuleCore/Git/GitManager.cs @@ -17,6 +17,8 @@ public class GitManager private GitManager(string? databaseName = null) { _registrations = new ConcurrentDictionary(); + // Regular usage of this constructor will never pass a database name in. Currently only tests should be hitting + // a code path that has a different database name _db = new DatabaseManager(databaseName ?? "git.db"); InitialiseRegistrations(); @@ -29,6 +31,14 @@ public class GitManager /// internal static GitManager InternalFreshInstance(string databaseName) => new(databaseName); + /// + /// Deletes the underlying database file. + /// + /// Avoid calling this outside of tests. + /// + /// + internal void DeleteDatabase() => _db.DeleteDatabase(); + /// /// Creates up any database tables and loads all previously saved git registrations. /// diff --git a/tests/ModuleTests/Git/AddRegistrationTests.cs b/tests/ModuleTests/Git/AddRegistrationTests.cs index 6c5d2a2..ced609b 100644 --- a/tests/ModuleTests/Git/AddRegistrationTests.cs +++ b/tests/ModuleTests/Git/AddRegistrationTests.cs @@ -24,13 +24,15 @@ public class AddRegistrationTests { Settings.UseFileName($"{nameof(BasicRepoRegistration)}_{testData.testId}"); - var gitManager = GitManager.InternalFreshInstance; + var gitManager = GitManager.InternalFreshInstance(nameof(BasicRepoRegistration)); var repoRegistration = gitManager.RegisterRepo("Test:/some/test/repo", testData.path); var sb = new StringBuilder(); sb.AppendLine($"Attempted to register: {testData.path}") .AppendLine($"Registration result: {repoRegistration}"); + gitManager.DeleteDatabase(); + return Verify(sb, Settings); } @@ -39,11 +41,13 @@ public class AddRegistrationTests { Settings.UseFileName(nameof(RepoRegistrationWithEmptyName)); - var gitManager = GitManager.InternalFreshInstance; + var gitManager = GitManager.InternalFreshInstance(nameof(RepoRegistrationWithEmptyName)); var testRepoAbsolutePath = "Test:/some/test/repo"; var emptyName = gitManager.RegisterRepo(testRepoAbsolutePath, ""); + gitManager.DeleteDatabase(); + Assert.Equal("repo", emptyName); } @@ -52,13 +56,15 @@ public class AddRegistrationTests { Settings.UseFileName(nameof(RepoRegistrationWithNullName)); - var gitManager = GitManager.InternalFreshInstance; + var gitManager = GitManager.InternalFreshInstance(nameof(RepoRegistrationWithNullName)); var testRepoAbsolutePath = "Test:/some/test/repo"; // Name is technically not-nullable, but string is a reference type so null can be passed in so we should test // it regardless var nullName = gitManager.RegisterRepo(testRepoAbsolutePath, null!); + gitManager.DeleteDatabase(); + Assert.Equal("repo", nullName); } @@ -67,11 +73,13 @@ public class AddRegistrationTests { Settings.UseFileName(nameof(RepoRegistrationWithWhitespaceName)); - var gitManager = GitManager.InternalFreshInstance; + var gitManager = GitManager.InternalFreshInstance(nameof(RepoRegistrationWithWhitespaceName)); var testRepoAbsolutePath = "Test:/some/test/repo"; var whitespaceName = gitManager.RegisterRepo(testRepoAbsolutePath, " "); + gitManager.DeleteDatabase(); + Assert.Equal("repo", whitespaceName); } @@ -80,7 +88,7 @@ public class AddRegistrationTests { Settings.UseFileName(nameof(RepoRegistrationWithWhitespaceName)); - var gitManager = GitManager.InternalFreshInstance; + var gitManager = GitManager.InternalFreshInstance(nameof(RepoRegistrationWithWhitespaceName)); var testRepoAbsolutePath = "Test:/some/test/repo"; string[] paths = ["test", "nested", "path"]; var names = (NormalSeparator: string.Join(Path.DirectorySeparatorChar, paths), AltSeparator: string.Join(Path.AltDirectorySeparatorChar, paths)); @@ -93,6 +101,8 @@ public class AddRegistrationTests Assert.Equal(Path.Combine(paths[..1]), secondRegistration); Assert.Throws(() => gitManager.RegisterRepo(testRepoAbsolutePath, Path.Combine(paths[..1]))); + + gitManager.DeleteDatabase(); } [Fact] @@ -100,7 +110,7 @@ public class AddRegistrationTests { Settings.UseFileName(nameof(RepoRegistrationWithWhitespaceName)); - var gitManager = GitManager.InternalFreshInstance; + var gitManager = GitManager.InternalFreshInstance(nameof(RepoRegistrationWithWhitespaceName)); var testRepoAbsolutePath = "Test:/some/test/repo"; string[] paths = ["test", "nested", "path"]; var names = (NormalSeparator: string.Join(Path.DirectorySeparatorChar, paths), AltSeparator: string.Join(Path.AltDirectorySeparatorChar, paths)); @@ -110,6 +120,8 @@ public class AddRegistrationTests var secondRegistration = gitManager.RegisterRepo(testRepoAbsolutePath, Path.Combine(paths[..1])); var differentPathSeparatorRegistration = gitManager.RegisterRepo(testRepoAbsolutePath, names.AltSeparator); + gitManager.DeleteDatabase(); + Assert.Equal(Path.Combine(paths), firstRegistration); Assert.Equal(Path.Combine(paths[..1]), secondRegistration); Assert.Equal(names.AltSeparator, differentPathSeparatorRegistration); From ba07e1618a3982a2d9a8d2659c4bd28f304e9275 Mon Sep 17 00:00:00 2001 From: Scott Date: Sat, 5 Sep 2026 13:02:05 +1000 Subject: [PATCH 4/4] chore: Fix line endings for verified test outputs --- .gitattributes | 4 ++++ .../BasicRenderTest/2026-06-01.verified.txt | 0 .../BasicRenderTest/2026-07-01.verified.txt | 0 .../BasicRenderTest/2026-08-01.verified.txt | 0 .../BasicRenderTest/cs-CZ.verified.txt | 0 .../BasicRenderTest/da-DK.verified.txt | 0 .../BasicRenderTest/en-AU.verified.txt | 0 .../BasicRenderTest/es-PR.verified.txt | 0 .../BasicRenderTest/fr-LU.verified.txt | 0 .../BasicRenderTest/nl-NL.verified.txt | 0 .../BasicRenderTest/te-IN.verified.txt | 0 .../MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt | 0 .../DoubleWideMarkedDayRender.verified.txt | 0 .../MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt | 0 .../MarkedDayRenderTests/LongMarkedDayRender.verified.txt | 0 .../MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt | 0 .../StartDayOfWeekTests/StartOfDayRender.verified.txt | 0 .../AddRegistrationTests/BasicRepoRegistration_0.verified.txt | 2 +- .../AddRegistrationTests/BasicRepoRegistration_1.verified.txt | 2 +- .../AddRegistrationTests/BasicRepoRegistration_2.verified.txt | 2 +- 20 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 .gitattributes rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/2026-06-01.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/2026-07-01.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/2026-08-01.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/cs-CZ.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/da-DK.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/en-AU.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/es-PR.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/fr-LU.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/nl-NL.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/BasicRenderTest/te-IN.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/MarkedDayRenderTests/LongMarkedDayRender.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt (100%) rename tests/ModuleTests/Calendar/{snapshots => Snapshots}/StartDayOfWeekTests/StartOfDayRender.verified.txt (100%) diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ea8de59 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +*.verified.txt text eol=lf working-tree-encoding=UTF-8 +*.verified.xml text eol=lf working-tree-encoding=UTF-8 +*.verified.json text eol=lf working-tree-encoding=UTF-8 +*.verified.bin binary \ No newline at end of file diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-06-01.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/2026-06-01.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-06-01.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/2026-06-01.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-07-01.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/2026-07-01.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-07-01.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/2026-07-01.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-08-01.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/2026-08-01.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-08-01.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/2026-08-01.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/cs-CZ.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/cs-CZ.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/cs-CZ.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/cs-CZ.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/da-DK.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/da-DK.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/da-DK.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/da-DK.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/en-AU.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/en-AU.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/en-AU.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/en-AU.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/es-PR.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/es-PR.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/es-PR.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/es-PR.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/fr-LU.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/fr-LU.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/fr-LU.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/fr-LU.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/nl-NL.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/nl-NL.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/nl-NL.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/nl-NL.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/te-IN.verified.txt b/tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/te-IN.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/BasicRenderTest/te-IN.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/BasicRenderTest/te-IN.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt diff --git a/tests/ModuleTests/Calendar/snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt b/tests/ModuleTests/Calendar/Snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt similarity index 100% rename from tests/ModuleTests/Calendar/snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt rename to tests/ModuleTests/Calendar/Snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt diff --git a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt index ee51d39..3183455 100644 --- a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt +++ b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt @@ -1,2 +1,2 @@ -Attempted to register: test +Attempted to register: test Registration result: test diff --git a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt index 628d265..e9b945d 100644 --- a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt +++ b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt @@ -1,2 +1,2 @@ -Attempted to register: test\path +Attempted to register: test\path Registration result: test\path diff --git a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt index 1b9406e..7f2c4e6 100644 --- a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt +++ b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt @@ -1,2 +1,2 @@ -Attempted to register: other/path +Attempted to register: other/path Registration result: other/path