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 c8e423b commit 7ab86f9Copy full SHA for 7ab86f9
.learn/exercises/05-returning-json/test.py
@@ -63,7 +63,7 @@ def test_labels_string():
63
if "label" in task:
64
assert isinstance(task["label"], str)
65
66
-@pytest.mark.it('The value of the "done" key on each todo should be boolean')
+@pytest.mark.it('The value of the "done" key on each todo should be a boolean')
67
def test_done_bool():
68
from src import app
69
for task in app.todos:
@@ -84,4 +84,4 @@ def test_return(client):
84
85
for task in _body:
86
assert "label" in task
87
- assert "done" in task
+ assert "done" in task
0 commit comments