From 2938fe9b43a63b5700233fd29f77b2ca6117bc5b Mon Sep 17 00:00:00 2001 From: Jean-Michel Vedrine Date: Mon, 1 Jan 2018 17:56:31 +0100 Subject: Fix parser test 1 --- tests/parser_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/parser_test.php b/tests/parser_test.php index a6c3442..fa5fa0f 100644 --- a/tests/parser_test.php +++ b/tests/parser_test.php @@ -42,8 +42,8 @@ class qtype_algebra_parser_test extends advanced_testcase { $p = new qtype_algebra_parser; $expr = $p->parse('sin(2x) + cos(3y)'); - $this->assertEquals(array('x', 'y'), $expr->get_variables()) - $this->assertEquals(array('cos', 'sin'), $expr->get_functions()) + $this->assertEquals(array('x', 'y'), $expr->get_variables()); + $this->assertEquals(array('cos', 'sin'), $expr->get_functions()); $this->assertEquals('\sin(2 x_{}) + \cos(3 y_{}', $exp->tex()); } } -- cgit v1.2.3