We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3544969 commit 0fe14a0Copy full SHA for 0fe14a0
1 file changed
tests/SharpClaw.Code.UnitTests/MemorySkillsGit/MemorySkillsGitServiceTests.cs
@@ -135,7 +135,7 @@ public async Task GitWorkspaceService_should_detect_linked_worktree_main_path()
135
var snapshot = await service.GetSnapshotAsync("/repo-linked", CancellationToken.None);
136
137
snapshot.IsLinkedWorktree.Should().BeTrue();
138
- snapshot.MainWorktreePath.Should().Be("/repo");
+ Path.GetFullPath(snapshot.MainWorktreePath!).Should().Be(Path.GetFullPath("/repo"));
139
snapshot.WorktreeCount.Should().Be(2);
140
}
141
0 commit comments