We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8dfb01 commit 425d254Copy full SHA for 425d254
1 file changed
tests/MoGeneratorTest.php
@@ -36,6 +36,10 @@ public function testMoGenerator()
36
$translation->translate('Comentario deshabilitado');
37
$translations->add($translation);
38
39
+ $translation = Translation::create(null, '15');
40
+ $translation->translate('15');
41
+ $translations->add($translation);
42
+
43
$translation = Translation::create(null, '123456');
44
$translation->translate('12345');
45
@@ -47,7 +51,7 @@ public function testMoGenerator()
47
51
48
52
$result = $loader->loadString($mo);
49
53
50
- $this->assertCount(3, $result);
54
+ $this->assertCount(4, $result);
55
$this->assertCount(5, $result->getHeaders());
56
}
57
0 commit comments