Skip to content

Commit

Permalink
Still trying to figure out why this changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgee committed Nov 15, 2023
1 parent ac1581e commit 6448a4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/scheduler/test_dispatch_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,12 @@ def test_observed_list(scheduler):
assert len(scheduler.observed_list) == 1

# A few hours later should now be different
time = Time('2016-09-11 13:08:00')
time = Time('2016-09-11 14:08:00')
scheduler.get_observation(time=time)
assert len(scheduler.observed_list) == 2

# A few hours later should be the same
time = Time('2016-09-11 14:08:00')
time = Time('2016-09-11 14:38:00')
scheduler.get_observation(time=time)
assert len(scheduler.observed_list) == 2

Expand Down

0 comments on commit 6448a4f

Please sign in to comment.