non-Existent -> nonexistent

Reverting from #3963

https://www.merriam-webster.com/dictionary/existent
This commit is contained in:
Michael Schurter
2018-03-12 11:26:37 -07:00
parent 9f57f3bb66
commit 8da7335c16
29 changed files with 64 additions and 64 deletions

View File

@@ -26,13 +26,13 @@ func TestLinuxSpecialDirs(t *testing.T) {
// Despite the task dir not existing, unmountSpecialDirs should *not*
// return an error
if err := td.unmountSpecialDirs(); err != nil {
t.Fatalf("error removing nonExistent special dirs: %v", err)
t.Fatalf("error removing nonexistent special dirs: %v", err)
}
// Mounting special dirs in a nonExistent task dir *should* return an
// Mounting special dirs in a nonexistent task dir *should* return an
// error
if err := td.mountSpecialDirs(); err == nil {
t.Fatalf("expected mounting in a nonExistent task dir %q to fail", td.Dir)
t.Fatalf("expected mounting in a nonexistent task dir %q to fail", td.Dir)
}
// Create the task dir like TaskDir.Build would