@@ -496,7 +496,7 @@ public function it_doesnt_create_a_regular_snapshot_and_mismatches_if_asked()
496496 $ this ->expectFail (
497497 $ mockTrait ,
498498 "Snapshot \"MatchesSnapshotTest__it_doesnt_create_a_regular_snapshot_and_mismatches_if_asked__1.txt \" does not exist. \n" .
499- "You can automatically create it by removing the `CREATE_SNAPSHOT =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
499+ "You can automatically create it by removing the `CREATE_SNAPSHOTS =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
500500 );
501501
502502 $ mockTrait ->assertMatchesSnapshot ('Bar ' );
@@ -512,7 +512,7 @@ public function it_doesnt_create_a_file_snapshot_and_mismatches_if_asked()
512512 $ this ->expectFail (
513513 $ mockTrait ,
514514 "Snapshot \"MatchesSnapshotTest__it_doesnt_create_a_file_snapshot_and_mismatches_if_asked__1.jpg_failed.jpg \" does not exist. \n" .
515- "You can automatically create it by removing the `CREATE_SNAPSHOT =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
515+ "You can automatically create it by removing the `CREATE_SNAPSHOTS =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
516516 );
517517
518518 $ mockTrait ->assertMatchesFileSnapshot (__DIR__ .'/stubs/test_files/friendly_man.jpg ' );
@@ -528,7 +528,7 @@ public function it_doesnt_create_a_regular_snapshot_and_mismatches_if_asked_with
528528 $ this ->expectFail (
529529 $ mockTrait ,
530530 "Snapshot \"MatchesSnapshotTest__it_doesnt_create_a_regular_snapshot_and_mismatches_if_asked_with_env_var__1.txt \" does not exist. \n" .
531- "You can automatically create it by removing the `CREATE_SNAPSHOT =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
531+ "You can automatically create it by removing the `CREATE_SNAPSHOTS =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
532532 );
533533
534534 $ mockTrait ->assertMatchesSnapshot ('Bar ' );
@@ -537,14 +537,14 @@ public function it_doesnt_create_a_regular_snapshot_and_mismatches_if_asked_with
537537 /** @test */
538538 public function it_doesnt_create_a_file_snapshot_and_mismatches_if_asked_with_env_var ()
539539 {
540- putenv ('CREATE_SNAPSHOT =false ' );
540+ putenv ('CREATE_SNAPSHOTS =false ' );
541541
542542 $ mockTrait = $ this ->getMatchesSnapshotMock ();
543543
544544 $ this ->expectFail (
545545 $ mockTrait ,
546546 "Snapshot \"MatchesSnapshotTest__it_doesnt_create_a_file_snapshot_and_mismatches_if_asked_with_env_var__1.jpg_failed.jpg \" does not exist. \n" .
547- "You can automatically create it by removing the `CREATE_SNAPSHOT =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
547+ "You can automatically create it by removing the `CREATE_SNAPSHOTS =false` env var, or `-d --without-creating-snapshots` of PHPUnit's CLI arguments. "
548548 );
549549
550550 $ mockTrait ->assertMatchesFileSnapshot (__DIR__ .'/stubs/test_files/friendly_man.jpg ' );
0 commit comments