@@ -34,7 +34,7 @@ public function it_has_log_file_exists_assertion()
3434 /** @test */
3535 public function it_has_log_file_not_exists_assertion ()
3636 {
37- $ this ->assertLogFileNotExists ('foobar .log ' );
37+ $ this ->assertLogFileNotExists ('foobarbaz .log ' );
3838 }
3939
4040 /** @test */
@@ -66,18 +66,18 @@ public function which_supports_datetime_placeholder()
6666 /** @test */
6767 public function it_has_log_file_not_contains_assertion ()
6868 {
69- $ this ->assertLogFileNotContains ('example.log ' , 'Sample log message 111 ! ' );
70- $ this ->assertLogFileNotContains ('example.log ' , 'Sample log message 222 ! ' );
71- $ this ->assertLogFileNotContains ('example.log ' , 'Sample log message 333 ! ' );
69+ $ this ->assertLogFileNotContains ('example.log ' , 'Unexisting log message 1 ! ' );
70+ $ this ->assertLogFileNotContains ('example.log ' , 'Unexisting log message 2 ! ' );
71+ $ this ->assertLogFileNotContains ('example.log ' , 'Unexisting log message 3 ! ' );
7272 }
7373
7474 /** @test */
7575 public function which_also_supports_array_of_contents ()
7676 {
7777 $ this ->assertLogFileNotContains ('example.log ' , [
78- 'Sample log message 111 ! ' ,
79- 'Sample log message 222 ! ' ,
80- 'Sample log message 333 ! ' ,
78+ 'Unexisting log message 1 ! ' ,
79+ 'Unexisting log message 2 ! ' ,
80+ 'Unexisting log message 3 ! ' ,
8181 ]);
8282 }
8383
0 commit comments