We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2adf7b commit c1680deCopy full SHA for c1680de
exercises/04-Call-a-function/tests.py
@@ -48,5 +48,5 @@ def test_call_calculate_area():
48
path = os.path.dirname(os.path.abspath(__file__))+'/app.py'
49
with open(path, 'r') as content_file:
50
content = content_file.read()
51
- regex = re.compile(r"=(\s*)calculate_area\(")
+ regex = re.compile(r"=(\s*)calculate_area\s*\(")
52
assert bool(regex.search(content)) == True
0 commit comments