Skip to content

Commit 7ab86f9

Browse files
authored
Update test.py
1 parent c8e423b commit 7ab86f9

File tree

1 file changed

+2
-2
lines changed
  • .learn/exercises/05-returning-json

1 file changed

+2
-2
lines changed

.learn/exercises/05-returning-json/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def test_labels_string():
6363
if "label" in task:
6464
assert isinstance(task["label"], str)
6565

66-
@pytest.mark.it('The value of the "done" key on each todo should be boolean')
66+
@pytest.mark.it('The value of the "done" key on each todo should be a boolean')
6767
def test_done_bool():
6868
from src import app
6969
for task in app.todos:
@@ -84,4 +84,4 @@ def test_return(client):
8484

8585
for task in _body:
8686
assert "label" in task
87-
assert "done" in task
87+
assert "done" in task

0 commit comments

Comments
 (0)