Skip to content

Commit

Permalink
Update ProductOrderItemTest.php (#810)
Browse files Browse the repository at this point in the history
set $beachBall variable to lowercase
  • Loading branch information
AntonyThorpe authored Dec 14, 2023
1 parent 3427d63 commit 05f02bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/php/Model/Product/ProductOrderItemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ProductOrderItemTest extends FunctionalTest
/**
* @var Product
*/
protected $beachBall;
protected $beachball;

/**
* @var Product
Expand All @@ -56,12 +56,12 @@ public function setUp(): void
$this->logInWithPermission('ADMIN');
$this->mp3player = $this->objFromFixture(Product::class, 'mp3player');
$this->socks = $this->objFromFixture(Product::class, 'socks');
$this->beachBall = $this->objFromFixture(Product::class, 'beachBall');
$this->beachball = $this->objFromFixture(Product::class, 'beachball');
$this->hdtv = $this->objFromFixture(Product::class, 'hdtv');

$this->mp3player->publishSingle();
$this->socks->publishSingle();
$this->beachBall->publishSingle();
$this->beachball->publishSingle();
$this->hdtv->publishSingle();

$this->cart = ShoppingCart::singleton();
Expand Down

0 comments on commit 05f02bd

Please sign in to comment.