Skip to content

Commit

Permalink
Merge 8a3c66d into eeb80cd
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Sep 25, 2018
2 parents eeb80cd + 8a3c66d commit 2f9fc33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/VolumePackerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ public function testAllowsRotatedBoxesInNewRow()
}

/**
* Test stability of items is calculated appropriately
* Test stability of items is calculated appropriately.
*/
public function testIssue148()
{
$box = new TestBox('Box',27, 37, 22, 100, 25, 36, 21, 15000);
$box = new TestBox('Box', 27, 37, 22, 100, 25, 36, 21, 15000);
$item = new TestItem('Item', 6, 12, 20, 100, false);
$itemList = new ItemList();
for ($i = 0; $i < 12; $i++) {
Expand All @@ -174,7 +174,7 @@ public function testIssue148()

self::assertEquals(12, count($packedBox->getItems()));

$box = new TestBox('Box1',27, 37, 22, 100, 25, 36, 21, 15000);
$box = new TestBox('Box1', 27, 37, 22, 100, 25, 36, 21, 15000);
$item = new TestItem('Item', 6, 12, 20, 100, true);
$itemList = new ItemList();
for ($i = 0; $i < 12; $i++) {
Expand Down

0 comments on commit 2f9fc33

Please sign in to comment.