Skip to content
Snippets Groups Projects
Commit 297c46d0 authored by Morten Hannemose's avatar Morten Hannemose
Browse files

Fixed parenthesis test week 4

parent b3207987
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ class Week04Parenthesis(UTestCase):
self.assertEqual(find_innermost_part('(3+x)'), '3+x')
self.assertEqual(find_innermost_part('3+x'), '3+x')
self.assertEqual(find_innermost_part('3x((y+2)y+x)'), 'y+2')
self.assertEqual(find_innermost_part('3x((y+(1 - q^2)y+x)'), '1 - q^2')
self.assertEqual(find_innermost_part('3x((y+(1 - q^2)y+x))'), '1 - q^2')
def test_find_index_of_equality(self):
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment