summaryrefslogtreecommitdiffstats
path: root/pkg/commands
diff options
context:
space:
mode:
authorCristian Betivu <cbe@languagewire.com>2023-08-19 19:12:36 +0300
committerCristian Betivu <cbe@languagewire.com>2023-08-19 19:12:36 +0300
commit7a4a0c85c433fd29185c05d0021cd0db87284f23 (patch)
tree54eb73689ee27077f4480b2be392577404ef0dc7 /pkg/commands
parent382ecb6bfebeb9805dca95d86341137a08ba98f8 (diff)
Fix test
Diffstat (limited to 'pkg/commands')
-rw-r--r--pkg/commands/git_commands/repo_paths.go2
-rw-r--r--pkg/commands/git_commands/repo_paths_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkg/commands/git_commands/repo_paths.go b/pkg/commands/git_commands/repo_paths.go
index e80b19a1c..13cda86a4 100644
--- a/pkg/commands/git_commands/repo_paths.go
+++ b/pkg/commands/git_commands/repo_paths.go
@@ -224,7 +224,7 @@ func getCurrentRepoGitDirPath(
// If this error causes issues, we could relax the constraint and just always
// return the path
- return "", "", errors.Errorf("could not find git dir for %s: the path '%s' is not under `worktrees` or `modules` directories.", currentPath, worktreeGitPath)
+ return "", "", errors.Errorf("could not find git dir for %s: the path '%s' is not under `worktrees` or `modules` directories", currentPath, worktreeGitPath)
}
// takes a path containing a symlink and returns the true path
diff --git a/pkg/commands/git_commands/repo_paths_test.go b/pkg/commands/git_commands/repo_paths_test.go
index 1bee52ec5..5e6275522 100644
--- a/pkg/commands/git_commands/repo_paths_test.go
+++ b/pkg/commands/git_commands/repo_paths_test.go
@@ -135,7 +135,7 @@ func TestGetRepoPathsAux(t *testing.T) {
},
Path: "/path/to/repo/my/submodule1",
Expected: nil,
- Err: errors.New("failed to get repo git dir path: could not find git dir for /path/to/repo/my/submodule1: path is not under `worktrees` or `modules` directories"),
+ Err: errors.New("failed to get repo git dir path: could not find git dir for /path/to/repo/my/submodule1: the path '/random/submodule1' is not under `worktrees` or `modules` directories"),
},
}