Skip to content

Commit

Permalink
Tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Feb 28, 2020
1 parent ff73ee9 commit 38d61a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions t/unit/tables/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,11 @@ def is_stale(timestamp, latest_timestamp):

on_window_close.assert_has_calls([
call(('boo', (1.1, 1.4)), 'BOO'),
call.coro(('boo', (1.1, 1.4)), 'BOO'),
call(('moo', (1.4, 1.6)), 'MOO'),
call.coro(('moo', (1.4, 1.6)), 'MOO'),
call(('faa', (1.9, 2.0)), 'FAA'),
call.coro(('faa', (1.9, 2.0)), 'FAA'),
])

table.last_closed_window = 8.0
Expand Down

0 comments on commit 38d61a7

Please sign in to comment.