From 4735d179087161834aa0537fab7c6d85ce21e2d0 Mon Sep 17 00:00:00 2001 From: "Meredith L. Patterson" <mlp@thesmartpolitenerd.com> Date: Sun, 1 Dec 2013 22:14:51 -0800 Subject: [PATCH] ActionTest has something wrong with its argument. --- src/bindings/php/Tests/ActionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/php/Tests/ActionTest.php b/src/bindings/php/Tests/ActionTest.php index 250dd24e..619ea4a2 100644 --- a/src/bindings/php/Tests/ActionTest.php +++ b/src/bindings/php/Tests/ActionTest.php @@ -11,7 +11,7 @@ class ActionTest extends PHPUnit_Framework_TestCase } protected function setUp() { - $this->parser = h_action(h_sequence(h_choice(ch("a"), ch("A")), h_choice(ch("b"), ch("B"))), "actTest"); + $this->parser = h_action(sequence(choice(ch("a"), ch("A")), choice(ch("b"), ch("B"))), "actTest"); } public function testSuccess() { -- GitLab