@@ -63,7 +63,7 @@ public function test_move_wiki_namespace() {
6363 $ this ->assertSame (0 , $ plan ->nextStep (),'done ' );
6464
6565 $ this ->assertFileExists (wikiFN ('foo:dokuwiki ' ));
66- $ this ->assertFileNotExists (wikiFN ('wiki:syntax ' ));
66+ $ this ->assertFileDoesNotExist (wikiFN ('wiki:syntax ' ));
6767 $ this ->assertFileExists (mediaFN ('foo:dokuwiki-128.png ' ));
6868 }
6969
@@ -93,7 +93,7 @@ public function test_move_missing() {
9393 $ this ->assertSame (0 , $ plan ->nextStep (),'done ' );
9494
9595 $ this ->assertFileExists (wikiFN ('newspace:page ' ));
96- $ this ->assertFileNotExists (wikiFN ('oldspace:page ' ));
96+ $ this ->assertFileDoesNotExist (wikiFN ('oldspace:page ' ));
9797
9898 $ this ->assertEquals ('[[missing]] ' , rawWiki ('newspace:page ' ));
9999 }
@@ -259,8 +259,8 @@ public function test_move_small_namespace_pages() {
259259
260260 $ this ->assertFileExists (wikiFN ('newns:start ' ));
261261 $ this ->assertFileExists (wikiFN ('newns:page ' ));
262- $ this ->assertFileNotExists (wikiFN ('oldns:start ' ));
263- $ this ->assertFileNotExists (wikiFN ('oldns:page ' ));
262+ $ this ->assertFileDoesNotExist (wikiFN ('oldns:start ' ));
263+ $ this ->assertFileDoesNotExist (wikiFN ('oldns:page ' ));
264264
265265 $ this ->assertSame ('[[newns:start]] [[newns:page]] [[newns:missing]] [[missing]] [[page]] ' ,rawWiki ('newns:start ' ));
266266 $ this ->assertSame ('[[newns:start]] [[newns:page]] [[newns:missing]] [[missing]] [[start]] ' ,rawWiki ('newns:page ' ));
@@ -300,7 +300,7 @@ public function test_move_small_namespace_media() {
300300 $ this ->assertSame (0 , $ plan ->nextStep (), 'done ' );
301301
302302 $ this ->assertFileExists (mediaFN ('newns:oldnsimage.png ' ));
303- $ this ->assertFileNotExists (mediaFN ('oldns:oldnsimage.png ' ));
303+ $ this ->assertFileDoesNotExist (mediaFN ('oldns:oldnsimage.png ' ));
304304
305305 $ this ->assertSame ('{{newns:oldnsimage.png}} {{newns:oldnsimage_missing.png}} {{image_missing.png}} ' ,rawWiki ('start ' ));
306306 }
@@ -338,7 +338,7 @@ public function test_move_small_namespace_media_affected() {
338338 $ this ->assertSame (0 , $ plan ->nextStep (), 'done ' );
339339
340340 $ this ->assertFileExists (mediaFN ('newns:oldnsimage.png ' ));
341- $ this ->assertFileNotExists (mediaFN ('oldns:oldnsimage.png ' ));
341+ $ this ->assertFileDoesNotExist (mediaFN ('oldns:oldnsimage.png ' ));
342342
343343 $ this ->assertSame ('{{newns:oldnsimage.png}} {{newns:oldnsimage_missing.png}} {{newns:oldnsimage_missing.png}} {{newns:oldnsimage.png}} ' ,rawWiki ('oldns:start ' ));
344344 }
@@ -384,7 +384,7 @@ public function test_move_small_namespace_combi() {
384384 $ this ->assertSame (0 , $ plan ->nextStep (), 'done ' );
385385
386386 $ this ->assertFileExists (mediaFN ('newns:oldnsimage.png ' ));
387- $ this ->assertFileNotExists (mediaFN ('oldns:oldnsimage.png ' ));
387+ $ this ->assertFileDoesNotExist (mediaFN ('oldns:oldnsimage.png ' ));
388388
389389 $ this ->assertSame ("[[newns:start]] [[newns:page]] [[newns:missing]] \n{{newns:oldnsimage.png}} {{newns:oldnsimage_missing.png}} {{oldnsimage_missing.png}} " ,rawWiki ('start ' ));
390390 }
@@ -425,8 +425,8 @@ public function test_move_small_namespace_subscription_ns() {
425425
426426 $ this ->assertFileExists (wikiFN ('newns:start ' ));
427427 $ this ->assertFileExists ($ newfilepath );
428- $ this ->assertFileNotExists (wikiFN ('subns:start ' ));
429- $ this ->assertFileNotExists ($ oldfilepath );
428+ $ this ->assertFileDoesNotExist (wikiFN ('subns:start ' ));
429+ $ this ->assertFileDoesNotExist ($ oldfilepath );
430430
431431 $ this ->assertSame ($ subscription ,file_get_contents ($ newfilepath ));
432432
@@ -468,8 +468,8 @@ public function test_move_small_namespace_subscription_page() {
468468
469469 $ this ->assertFileExists (wikiFN ('newns:start ' ));
470470 $ this ->assertFileExists ($ newfilepath );
471- $ this ->assertFileNotExists (wikiFN ('subns:start ' ));
472- $ this ->assertFileNotExists ($ oldfilepath );
471+ $ this ->assertFileDoesNotExist (wikiFN ('subns:start ' ));
472+ $ this ->assertFileDoesNotExist ($ oldfilepath );
473473
474474 $ this ->assertSame ($ subscription ,file_get_contents ($ newfilepath ));
475475
0 commit comments