Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit ecf703b

Browse files
JoshVeeweierophinney
authored andcommitted
fixed line endings
1 parent de9c786 commit ecf703b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/PriorityListTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ public function testInsert()
3434
$this->assertEquals('foo', $key);
3535
}
3636
}
37-
37+
3838
public function testInsertDuplicates()
3939
{
4040
$this->list->insert('foo', new \stdClass());
4141
$this->list->insert('bar', new \stdClass());
42-
42+
4343
$this->assertEquals(2, count($this->list));
44-
44+
4545
$this->list->insert('foo', new \stdClass());
4646
$this->list->insert('foo', new \stdClass());
4747
$this->list->insert('bar', new \stdClass());
48-
48+
4949
$this->assertEquals(2, count($this->list));
50-
50+
5151
$this->list->remove('foo');
52-
52+
5353
$this->assertEquals(1, count($this->list));
5454
}
5555

0 commit comments

Comments
 (0)