remove mod=vendor in statemgr test

This commit is contained in:
James Bardin 2020-09-24 08:44:49 -04:00
parent 2e5366ac69
commit 53a8e321eb
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ func TestFilesystemLocks(t *testing.T) {
t.Fatal(err)
}
out, err := exec.Command("go", "run", "-mod=vendor", "testdata/lockstate.go", s.path).CombinedOutput()
out, err := exec.Command("go", "run", "testdata/lockstate.go", s.path).CombinedOutput()
if err != nil {
t.Fatal("unexpected lock failure", err, string(out))
}