diff --git a/tests/SharpClaw.Code.UnitTests/MemorySkillsGit/MemorySkillsGitServiceTests.cs b/tests/SharpClaw.Code.UnitTests/MemorySkillsGit/MemorySkillsGitServiceTests.cs index da7719e..43810cf 100644 --- a/tests/SharpClaw.Code.UnitTests/MemorySkillsGit/MemorySkillsGitServiceTests.cs +++ b/tests/SharpClaw.Code.UnitTests/MemorySkillsGit/MemorySkillsGitServiceTests.cs @@ -135,7 +135,7 @@ public async Task GitWorkspaceService_should_detect_linked_worktree_main_path() var snapshot = await service.GetSnapshotAsync("/repo-linked", CancellationToken.None); snapshot.IsLinkedWorktree.Should().BeTrue(); - snapshot.MainWorktreePath.Should().Be("/repo"); + Path.GetFullPath(snapshot.MainWorktreePath!).Should().Be(Path.GetFullPath("/repo")); snapshot.WorktreeCount.Should().Be(2); }