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 d4cd109 commit 7687831Copy full SHA for 7687831
example.py
@@ -2,4 +2,8 @@ def add(a, b):
2
return a + b
3
4
def subtract(a, b):
5
- return a + b # do not change this line until prompted to do so.
+ return a + b # do not change this line until prompted to do so.
6
+
7
+def test_add():
8
+ assert add(1,2)==3
9
+ # assert add(2,3)==0
0 commit comments