gps: See if ioutil.WriteFile() makes windows happy

This commit is contained in:
sam boyer 2017-10-27 00:29:33 -04:00
Родитель ea9a941c0f
Коммит 123ba6be14
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -697,11 +697,10 @@ func TestGitSourceAdaptiveCleanup(t *testing.T) {
// Create a file that git will see as untracked.
untrackedPath := filepath.Join(repodir, "untrackedfile")
f, err := os.Create(untrackedPath)
err = ioutil.WriteFile(untrackedPath, []byte("foo"), 0644)
if err != nil {
t.Fatal(err)
}
f.Close()
mkSM()
err = sm.SyncSourceFor(id)