Test Failed
Push — master ( d3990f...a5a1b1 )
by Martin
02:27
created
symfony/tests/_support/AcceptanceTester.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function theStatusOfTaskShouldBe($arg1, $arg2)
57 57
     {
58
-        $this->see($arg1 . ' (' . $arg2 . ')');
58
+        $this->see($arg1.' ('.$arg2.')');
59 59
     }
60 60
 
61 61
     /**
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function theNewTaskShouldNotBeCreated($arg1)
74 74
     {
75
-        $this->see($arg1 . " is already existed");
75
+        $this->see($arg1." is already existed");
76 76
     }
77 77
 
78 78
     /**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
             $name = $row['name'];
86 86
             $status = $row['status'];
87 87
 
88
-            $this->see($name . ' (' . $status . ')');
88
+            $this->see($name.' ('.$status.')');
89 89
         }
90 90
     }
91 91
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         foreach ($tableNode as $row) {
106 106
             $name = $row['name'];
107 107
 
108
-            $this->see($name . ' (remaining)');
108
+            $this->see($name.' (remaining)');
109 109
         }
110 110
     }
111 111
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         foreach ($tableNode as $row) {
118 118
             $name = $row['name'];
119 119
 
120
-            $this->see($name . ' (completed)');
120
+            $this->see($name.' (completed)');
121 121
         }
122 122
     }
123 123
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     public function thereIsATaskNamedWithStatus($arg1, $arg2)
128 128
     {
129 129
         $this->amOnPage('/task/list');
130
-        $this->see($arg1 . ' (' . $arg2 . ')');
130
+        $this->see($arg1.' ('.$arg2.')');
131 131
     }
132 132
 
133 133
     /**
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      */
136 136
     public function iModifyTaskWithNameAndStatus($arg1, $arg2, $arg3)
137 137
     {
138
-        $this->click("a[data-edit='" . $arg1 . "']");
138
+        $this->click("a[data-edit='".$arg1."']");
139 139
         $this->fillField('update_task_form[name]', $arg2);
140 140
         $this->selectOption('update_task_form[status]', $arg3);
141 141
         $this->click('update_task_form[submit]');
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     public function theTaskShouldHaveNameAndStatus($arg1, $arg2, $arg3)
149 149
     {
150 150
         $this->dontSee($arg1);
151
-        $this->see($arg2 . ' (' . $arg3 . ')');
151
+        $this->see($arg2.' ('.$arg3.')');
152 152
     }
153 153
 
154 154
 
@@ -158,9 +158,9 @@  discard block
 block discarded – undo
158 158
     public function iModifyTaskWithStatus($arg1, $arg2)
159 159
     {
160 160
         if ($arg2 === 'remaining') {
161
-            $this->click("a[data-redo='" . $arg1 . "']");
161
+            $this->click("a[data-redo='".$arg1."']");
162 162
         } else if ($arg2 === 'completed') {
163
-            $this->click("a[data-done='" . $arg1 . "']");
163
+            $this->click("a[data-done='".$arg1."']");
164 164
         } else {
165 165
             throw new \Exception('Invalid status');
166 166
         }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      */
173 173
     public function theTaskShouldHaveStatus($arg1, $arg2)
174 174
     {
175
-        $this->see($arg1 . ' (' . $arg2 . ')');
175
+        $this->see($arg1.' ('.$arg2.')');
176 176
     }
177 177
 
178 178
     /**
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      */
181 181
     public function iRemoveTask($arg1)
182 182
     {
183
-        $this->click("a[data-remove='" . $arg1 . "']");
183
+        $this->click("a[data-remove='".$arg1."']");
184 184
     }
185 185
 
186 186
     /**
Please login to merge, or discard this patch.