Skip to content

Commit

Permalink
Unifiy test comment style
Browse files Browse the repository at this point in the history
  • Loading branch information
joelostblom committed May 16, 2020
1 parent 64bf0c6 commit 6021960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_watson.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,13 +279,13 @@ def test_start_project_at(watson):
watson.start('foo', start_at=now)
watson.stop()

# Can't start before the previous task ends
# Task can't start before the previous task ends
with pytest.raises(WatsonError):
time_str = '1970-01-01T00:00'
time_obj = arrow.get(time_str)
watson.start('foo', start_at=time_obj)

# Can't start in the future
# Task can't start in the future
with pytest.raises(WatsonError):
time_str = '2999-12-31T23:59'
time_obj = arrow.get(time_str)
Expand Down

0 comments on commit 6021960

Please sign in to comment.