compiletest: fix typo in runtest.rs

nonexistant -> nonexistent
This commit is contained in:
Ikko Ashimine 2022-08-16 16:51:52 +09:00 committed by GitHub
parent ef9810a3e2
commit 96c91afebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3761,7 +3761,7 @@ impl<'test> TestCx<'test> {
fn delete_file(&self, file: &PathBuf) {
if !file.exists() {
// Deleting a nonexistant file would error.
// Deleting a nonexistent file would error.
return;
}
if let Err(e) = fs::remove_file(file) {