@@ -269,11 +269,11 @@ public function testIsFile()
269269 {
270270 $ this ->assertFalse ($ this ->filter ->isFile ('vfs://root/a/path ' ));
271271 $ this ->assertFalse ($ this ->filter ->isFile ('xdebug://debug-eval ' ));
272- $ this ->assertfalse ($ this ->filter ->isFile ('eval() \'d code ' ));
273- $ this ->assertfalse ($ this ->filter ->isFile ('runtime-created function ' ));
274- $ this ->assertfalse ($ this ->filter ->isFile ('assert code ' ));
275- $ this ->assertfalse ($ this ->filter ->isFile ('regexp code ' ));
276- $ this ->asserttrue ($ this ->filter ->isFile ('filename ' ));
272+ $ this ->assertFalse ($ this ->filter ->isFile ('eval() \'d code ' ));
273+ $ this ->assertFalse ($ this ->filter ->isFile ('runtime-created function ' ));
274+ $ this ->assertFalse ($ this ->filter ->isFile ('assert code ' ));
275+ $ this ->assertFalse ($ this ->filter ->isFile ('regexp code ' ));
276+ $ this ->assertTrue ($ this ->filter ->isFile ('filename ' ));
277277 }
278278
279279 /**
@@ -282,7 +282,7 @@ public function testIsFile()
282282 public function testBlacklistedFileIsFiltered ()
283283 {
284284 $ this ->filter ->addFileToBlacklist ($ this ->files [0 ]);
285- $ this ->asserttrue ($ this ->filter ->isFiltered ($ this ->files [0 ]));
285+ $ this ->assertTrue ($ this ->filter ->isFiltered ($ this ->files [0 ]));
286286 }
287287
288288 /**
@@ -291,7 +291,7 @@ public function testBlacklistedFileIsFiltered()
291291 public function testWhitelistedFileIsNotFiltered ()
292292 {
293293 $ this ->filter ->addFileToWhitelist ($ this ->files [0 ]);
294- $ this ->assertfalse ($ this ->filter ->isFiltered ($ this ->files [0 ]));
294+ $ this ->assertFalse ($ this ->filter ->isFiltered ($ this ->files [0 ]));
295295 }
296296
297297 /**
@@ -300,7 +300,7 @@ public function testWhitelistedFileIsNotFiltered()
300300 public function testNotWhitelistedFileIsFiltered ()
301301 {
302302 $ this ->filter ->addFileToWhitelist ($ this ->files [0 ]);
303- $ this ->asserttrue ($ this ->filter ->isFiltered ($ this ->files [1 ]));
303+ $ this ->assertTrue ($ this ->filter ->isFiltered ($ this ->files [1 ]));
304304 }
305305
306306 /**
0 commit comments