From 2ec27ff9fe4096f0c1beaa008820383573c4bd66 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:21:14 -0700 Subject: [PATCH] Update test comments about Windows behavior Co-authored-by: Tyler McGoffin --- pkg/cmd/extension/manager_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/extension/manager_test.go b/pkg/cmd/extension/manager_test.go index 2ccb619f8..fd1d93f42 100644 --- a/pkg/cmd/extension/manager_test.go +++ b/pkg/cmd/extension/manager_test.go @@ -742,8 +742,8 @@ func TestManager_Install_local(t *testing.T) { extensionLinkFile := filepath.Join(extManagerDir, "extensions", fakeExtensionName) if runtime.GOOS == "windows" { - // We don't create symlinks on Windows, so check if we made a file - // with the correct contents + // We don't create true symlinks on Windows, so check if we made a + // file with the correct contents to produce the symlink-like behavior b, err := os.ReadFile(extensionLinkFile) require.NoError(t, err) assert.Equal(t, extensionLocalPath, string(b))