diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2016-02-12 23:36:16 +0200 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2016-02-12 23:36:16 +0200 |
commit | 8383942ce5abc1527c4e11842ae1b1acbf5030d0 (patch) | |
tree | 58a132d10d971d012ee0ac6ac870bffb4f2a836f /tests/Components/OptionsArrayTest.php | |
parent | de8b3efbbca418f7c867909dbcb3fbe4b4a20497 (diff) | |
download | sql-parser-8383942ce5abc1527c4e11842ae1b1acbf5030d0.zip sql-parser-8383942ce5abc1527c4e11842ae1b1acbf5030d0.tar.gz sql-parser-8383942ce5abc1527c4e11842ae1b1acbf5030d0.tar.bz2 |
Expression: Refactored parsing options.v3.3.0
Diffstat (limited to 'tests/Components/OptionsArrayTest.php')
-rw-r--r-- | tests/Components/OptionsArrayTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Components/OptionsArrayTest.php b/tests/Components/OptionsArrayTest.php index 1c8823e..5df776b 100644 --- a/tests/Components/OptionsArrayTest.php +++ b/tests/Components/OptionsArrayTest.php @@ -42,7 +42,7 @@ class OptionsArrayTest extends TestCase new Parser(), $this->getTokensList('SUM = (3 + 5) RESULT = 8'), array( - 'SUM' => array(1, 'expr', array('bracketsDelimited' => true)), + 'SUM' => array(1, 'expr', array('parenthesesDelimited' => true)), 'RESULT' => array(2, 'var'), ) ); |