Completed
Push — development ( 141559...49db8f )
by Dylan David
04:37 queued 02:47
created
Ptypes/Test/DoublyLinkedListTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -213,13 +213,13 @@
 block discarded – undo
213 213
 	public function it_can_get_size_and_count()
214 214
 	{
215 215
 		$list = new DoublyLinkedList();
216
-		for($i = 0; $i < 10; $i++)
216
+		for ($i = 0; $i < 10; $i++)
217 217
 		{
218 218
 			$list->insert(new DLNode($i));
219 219
 		}
220 220
 		$n = new DLNode(11);
221 221
 		$list->insert($n);
222 222
 		$list->remove($n);
223
-		$this->assertEquals($list->size() + count($list), 20); //10 + 10 = 10 + 10 i.e: 20 = 20
223
+		$this->assertEquals($list->size()+count($list), 20); //10 + 10 = 10 + 10 i.e: 20 = 20
224 224
 	}
225 225
 }
226 226
\ No newline at end of file
Please login to merge, or discard this patch.