Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Mar 10, 2024
1 parent 3e321d8 commit 001f397
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/unit/Examples/ExamplesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class ExamplesTest extends \Codeception\Test\Unit
{
public function testSlicing()
{
new SliceSelector('::');
$originalArray = [1, 2, 3, 4, 5, 6, 7, 8, 9];
$originalView = ArrayView::toView($originalArray);

Expand Down Expand Up @@ -90,4 +91,9 @@ public function testCombinedSubview()
$subview[':'] = [55, 77];
$this->assertSame([1, 2, 3, 4, 55, 6, 77, 8, 9, 10], $originalArray);
}

protected function _setUp()
{
$_ = new MaskSelector([]); // TODO why for 7.4???
}
}

0 comments on commit 001f397

Please sign in to comment.