@@ -40,7 +40,7 @@ public function shouldShowIssueBoard()
4040
4141 $ this ->assertEquals ($ expectedArray , $ api ->show (1 , 2 ));
4242 }
43-
43+
4444 /**
4545 * @test
4646 */
@@ -123,7 +123,7 @@ public function shouldGetAllLists()
123123 ->with ('projects/1/boards/2/lists ' )
124124 ->will ($ this ->returnValue ($ expectedArray ))
125125 ;
126-
126+
127127 $ this ->assertEquals ($ expectedArray , $ api ->allLists (1 , 2 ));
128128 }
129129
@@ -143,14 +143,14 @@ public function shouldGetList()
143143 'position ' => 3
144144 )
145145 );
146-
146+
147147 $ api = $ this ->getApiMock ();
148148 $ api ->expects ($ this ->once ())
149149 ->method ('get ' )
150150 ->with ('projects/1/boards/2/lists/3 ' )
151151 ->will ($ this ->returnValue ($ expectedArray ))
152152 ;
153-
153+
154154 $ this ->assertEquals ($ expectedArray , $ api ->showList (1 , 2 , 3 ));
155155 }
156156
@@ -170,7 +170,7 @@ public function shouldCreateList()
170170 'position ' => 3
171171 )
172172 );
173-
173+
174174 $ api = $ this ->getApiMock ();
175175 $ api ->expects ($ this ->once ())
176176 ->method ('post ' )
@@ -197,14 +197,14 @@ public function shouldUpdateList()
197197 'position ' => 1
198198 )
199199 );
200-
200+
201201 $ api = $ this ->getApiMock ();
202202 $ api ->expects ($ this ->once ())
203203 ->method ('put ' )
204204 ->with ('projects/5/boards/2/lists/3 ' , array ('position ' => 1 ))
205205 ->will ($ this ->returnValue ($ expectedArray ))
206206 ;
207-
207+
208208 $ this ->assertEquals ($ expectedArray , $ api ->updateList (5 , 2 , 3 , 1 ));
209209 }
210210
@@ -214,14 +214,14 @@ public function shouldUpdateList()
214214 public function shouldDeleteList ()
215215 {
216216 $ expectedBool = true ;
217-
217+
218218 $ api = $ this ->getApiMock ();
219219 $ api ->expects ($ this ->once ())
220220 ->method ('delete ' )
221221 ->with ('projects/1/boards/2/lists/3 ' )
222222 ->will ($ this ->returnValue ($ expectedBool ))
223223 ;
224-
224+
225225 $ this ->assertEquals ($ expectedBool , $ api ->deleteList (1 , 2 , 3 ));
226226 }
227227
0 commit comments