Completed
Push — master ( 4f609d...25ef51 )
by Anton
03:37 queued 03:30
created
tests/Command/Generate/GridCommandTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
         self::assertFileExists($file);
97 97
         self::assertEquals(
98 98
             md5_file($file),
99
-            md5_file(__DIR__ . DS . '..' . DS . '..' . DS. 'Generator' . DS . 'samples' . DS . 'grid.html')
99
+            md5_file(__DIR__ . DS . '..' . DS . '..' . DS . 'Generator' . DS . 'samples' . DS . 'grid.html')
100 100
         );
101 101
     }
102 102
 
Please login to merge, or discard this patch.
tests/Command/Generate/RestCommandTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         );
54 54
 
55 55
         $this->getFs()->touch(
56
-            $this->modelPath .DS. 'Crud.php'
56
+            $this->modelPath . DS . 'Crud.php'
57 57
         );
58 58
 
59 59
         $this->modulePath = $this->workingPath
@@ -111,13 +111,13 @@  discard block
 block discarded – undo
111 111
         self::assertRegExp('/Running generate:rest command/', $display);
112 112
         self::assertRegExp('/has been successfully created/', $display);
113 113
 
114
-        $file = $this->modulePath .DS. 'controllers' .DS. 'rest.php';
114
+        $file = $this->modulePath . DS . 'controllers' . DS . 'rest.php';
115 115
 
116 116
         self::assertFileExists($file);
117 117
 
118 118
         self::assertEquals(
119 119
             md5_file($file),
120
-            md5_file(__DIR__ . DS . '..' . DS . '..' . DS. 'Generator' . DS . 'samples' . DS . 'rest.html')
120
+            md5_file(__DIR__ . DS . '..' . DS . '..' . DS . 'Generator' . DS . 'samples' . DS . 'rest.html')
121 121
         );
122 122
     }
123 123
 
Please login to merge, or discard this patch.
tests/Command/Generate/CrudCommandTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
         self::assertEquals(
90 90
             md5_file($file),
91
-            md5_file(__DIR__ . DS . '..' . DS . '..' . DS. 'Generator' . DS . 'samples' . DS . 'crud.html')
91
+            md5_file(__DIR__ . DS . '..' . DS . '..' . DS . 'Generator' . DS . 'samples' . DS . 'crud.html')
92 92
         );
93 93
     }
94 94
 
Please login to merge, or discard this patch.