You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
I wrote a program that passed all tests except for this one:
OrderBookPart3Test: test_1_mark_finished
When executing the following code
t = OrderBook()
t.add_order("program web store", "Andy", 10)
t.mark_finished(1)
t.all_orders()
method should return a list containing following tasks
program web store (Andy hours), programmer 10 FINISHED
now return was
1: program web store (10 hours), programmer Andy FINISHED
and the similar one more:
OrderBookPart3Test: test_4_finished
When executing the following code
t = OrderBook()
t.add_order("program web store", "Andy", 10)
t.mark_finished(1)
t.finished_orders()
method should return a list containing following tasks
program web store (Andy hours), programmer 10 FINISHED
now return was
1: program web store (10 hours), programmer Andy FINISHED
But the answer that is printed above is even grammatically incorrect: "Andy hours" (?), "programmer 10" (?).
Please take a look at these tests, I think there are some mistakes.
The text was updated successfully, but these errors were encountered:
Hello!
I wrote a program that passed all tests except for this one:
and the similar one more:
But the answer that is printed above is even grammatically incorrect: "Andy hours" (?), "programmer 10" (?).
Please take a look at these tests, I think there are some mistakes.
The text was updated successfully, but these errors were encountered: