diff options
author | Jean-Michel Vedrine <vedrine@vedrine.org> | 2018-01-02 16:09:44 +0100 |
---|---|---|
committer | Jean-Michel Vedrine <vedrine@vedrine.org> | 2018-01-02 16:09:44 +0100 |
commit | f3b9667fd8fccdf100e760cdd196573aa041968c (patch) | |
tree | 11fc3b805d727a1f06cced3c6b0cb2d2f259c507 /tests | |
parent | 99656366553e3eada13f4f3990ab109e925a108a (diff) |
Fix style of xmlrpc-utils
Diffstat (limited to 'tests')
-rw-r--r-- | tests/parser_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser_test.php b/tests/parser_test.php index ae6b219..5d5eaad 100644 --- a/tests/parser_test.php +++ b/tests/parser_test.php @@ -60,6 +60,6 @@ class qtype_algebra_parser_test extends advanced_testcase { $expr = $p->parse('sin(4 x) + cos(5 y)'); $this->assertEquals('\sin \left( 4 x_{} \right) + \cos \left( 5 y_{} \right)', $expr->tex()); $expr = $p->parse('sin(6*x) + cos(7*y)'); - $this->assertEquals('\sin \left( 6 x_{} \right) + \cos \left( 7 y_{} \right)', $expr->tex()); + $this->assertEquals('\sin \left( 6 x_{} \right) + \cos \left( 7 y_{} \right)', $expr->tex()); } } |