diff --git a/tests/ScannerTest.php b/tests/ScannerTest.php index 45389c3..5a5d93c 100644 --- a/tests/ScannerTest.php +++ b/tests/ScannerTest.php @@ -31,7 +31,7 @@ public function it_finds_all_translations() $this->scanner = app()->make(Scanner::class); $matches = $this->scanner->findTranslations(); - $this->assertEquals($matches, ['single' => ['single' => ['This will go in the JSON array' => '', 'This will also go in the JSON array' => '', 'This will go in the JSON array, and it\'ll properly unescape the apostrophe.' => '', 'trans' => '']], 'group' => ['lang' => ['first_match' => ''], 'lang_get' => ['first' => '', 'second' => ''], 'trans' => ['first_match' => '', 'third_match' => ''], 'trans_choice' => ['with_params' => '']]]); + $this->assertEquals(['single' => ['single' => ['This will go in the JSON array' => '', 'This will also go in the JSON array' => '', 'This will go in the JSON array, and it\'ll properly unescape the apostrophe.' => '', 'trans' => '']], 'group' => ['lang' => ['first_match' => ''], 'lang_get' => ['first' => '', 'second' => ''], 'trans' => ['first_match' => '', 'third_match' => ''], 'trans_choice' => ['with_params' => '']]], $matches); $this->assertCount(2, $matches); } }