File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ public function testBackupFail()
115115 try {
116116 $ influxd ->backup ($ target , $ appResult );
117117 } catch (Exception $ e ) {
118- $ this ->assertFileDoesNotExist ($ file );
118+ $ this ->assertFileNotExists ($ file );
119119 throw $ e ;
120120 }
121121 }
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ public function testBackupFail()
200200 try {
201201 $ ldap ->backup ($ target , $ appResult );
202202 } catch (Exception $ e ) {
203- $ this ->assertFileDoesNotExist ($ file );
203+ $ this ->assertFileNotExists ($ file );
204204 throw $ e ;
205205 }
206206 }
Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ public function testBackupFail()
338338 try {
339339 $ mysqldump ->backup ($ target , $ appResult );
340340 } catch (Exception $ e ) {
341- $ this ->assertFileDoesNotExist ($ file );
341+ $ this ->assertFileNotExists ($ file );
342342 throw $ e ;
343343 }
344344 }
Original file line number Diff line number Diff line change @@ -181,10 +181,10 @@ public function testRemoveDir()
181181
182182 Cli::removeDir ($ dirToDelete );
183183
184- $ this ->assertFileDoesNotExist ($ file );
185- $ this ->assertFileDoesNotExist ($ fileInSub );
186- $ this ->assertFileDoesNotExist ($ subDir );
187- $ this ->assertFileDoesNotExist ($ dirToDelete );
184+ $ this ->assertFileNotExists ($ file );
185+ $ this ->assertFileNotExists ($ fileInSub );
186+ $ this ->assertFileNotExists ($ subDir );
187+ $ this ->assertFileNotExists ($ dirToDelete );
188188 }
189189
190190 /**
You can’t perform that action at this time.
0 commit comments