chore: fix function names in comment

Signed-off-by: racequite <quiterace@gmail.com>
This commit is contained in:
racequite 2024-04-19 12:24:42 +08:00
parent b9828336c5
commit dccfd6e4d0
1 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ COPY data /data
assert.DeepEqual(t, expected, fakeBuild.filenames(t)) assert.DeepEqual(t, expected, fakeBuild.filenames(t))
} }
// TestRunBuildFromLocalGitHubDirNonExistingRepo tests that build contexts // TestRunBuildFromGitHubSpecialCase tests that build contexts
// starting with `github.com/` are special-cased, and the build command attempts // starting with `github.com/` are special-cased, and the build command attempts
// to clone the remote repo. // to clone the remote repo.
// TODO: test "context selection" logic directly when runBuild is refactored // TODO: test "context selection" logic directly when runBuild is refactored
@ -132,7 +132,7 @@ func TestRunBuildFromGitHubSpecialCase(t *testing.T) {
assert.ErrorContains(t, err, "docker-build-git") assert.ErrorContains(t, err, "docker-build-git")
} }
// TestRunBuildFromLocalGitHubDirNonExistingRepo tests that a local directory // TestRunBuildFromLocalGitHubDir tests that a local directory
// starting with `github.com` takes precedence over the `github.com` special // starting with `github.com` takes precedence over the `github.com` special
// case. // case.
func TestRunBuildFromLocalGitHubDir(t *testing.T) { func TestRunBuildFromLocalGitHubDir(t *testing.T) {