Passed
Push — master ( ea0462...326cf8 )
by Anton
02:19
created
tests/Framework/I18n/ExportTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 {
18 18
     public function testReset(): void
19 19
     {
20
-        $this->assertFileNotExists(sys_get_temp_dir() . '/messages.ru.php');
20
+        $this->assertFileNotExists(sys_get_temp_dir().'/messages.ru.php');
21 21
 
22 22
         $this->runCommandDebug('i18n:index');
23 23
         $this->runCommandDebug('configure');
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
             '--fallback' => 'en',
28 28
         ]);
29 29
 
30
-        $this->assertFileExists(sys_get_temp_dir() . '/messages.ru.php');
30
+        $this->assertFileExists(sys_get_temp_dir().'/messages.ru.php');
31 31
 
32
-        $exp = (require sys_get_temp_dir() . '/messages.ru.php');
32
+        $exp = (require sys_get_temp_dir().'/messages.ru.php');
33 33
 
34 34
         $this->assertArrayHasKey('World', $exp);
35 35
         $this->assertSame('Мир', $exp['World']);
@@ -37,6 +37,6 @@  discard block
 block discarded – undo
37 37
         $this->assertArrayHasKey('%s unit|%s units', $exp);
38 38
         $this->assertArrayHasKey('This value is required.', $exp);
39 39
 
40
-        unlink(sys_get_temp_dir() . '/messages.ru.php');
40
+        unlink(sys_get_temp_dir().'/messages.ru.php');
41 41
     }
42 42
 }
Please login to merge, or discard this patch.