diff --git a/internal/core/path_test.go b/internal/core/path_test.go index 4c3678f0..ae1d4fb4 100644 --- a/internal/core/path_test.go +++ b/internal/core/path_test.go @@ -84,7 +84,7 @@ func main() { func TestPathRunOnDemand(t *testing.T) { onDemandFile := filepath.Join(os.TempDir(), "ondemand") - onUnDemandFile := filepath.Join(os.TempDir(), "ondisconnect") + onUnDemandFile := filepath.Join(os.TempDir(), "onundemand") srcFile := filepath.Join(os.TempDir(), "ondemand.go") err := os.WriteFile(srcFile, @@ -182,14 +182,14 @@ func TestPathRunOnDemand(t *testing.T) { }() for { - _, err := os.Stat(onDemandFile) + _, err := os.Stat(onUnDemandFile) if err == nil { break } time.Sleep(100 * time.Millisecond) } - _, err := os.Stat(onUnDemandFile) + _, err := os.Stat(onDemandFile) require.NoError(t, err) }) }