diff options
Diffstat (limited to 'tests/Components/ExpressionArrayTest.php')
-rw-r--r-- | tests/Components/ExpressionArrayTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Components/ExpressionArrayTest.php b/tests/Components/ExpressionArrayTest.php index 0fad913..3d8cd77 100644 --- a/tests/Components/ExpressionArrayTest.php +++ b/tests/Components/ExpressionArrayTest.php @@ -16,7 +16,7 @@ class ExpressionArrayTest extends TestCase new Parser(), $this->getTokensList('(expr)'), array( - 'noBrackets' => true, + 'breakOnParentheses' => true, ) ); $this->assertEquals(array(), $component); @@ -28,7 +28,7 @@ class ExpressionArrayTest extends TestCase new Parser(), $this->getTokensList('(expr) +'), array( - 'bracketsDelimited' => true, + 'parenthesesDelimited' => true, ) ); $this->assertEquals(1, count($component)); |