Skip to content

Commit

Permalink
fixing date tests to also work in february
Browse files Browse the repository at this point in the history
  • Loading branch information
rodja committed Feb 1, 2023
1 parent d095e67 commit fba201a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_date.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def test_date_with_range(screen: Screen):
screen.click('19')
screen.should_contain('4 days')

screen.click('26')
screen.click('29')
screen.click('25')
screen.click('28')
screen.should_contain('4 days')


Expand All @@ -34,8 +34,8 @@ def test_date_with_multi_selection(screen: Screen):
screen.click('19')
screen.should_contain('2 days')

screen.click('26')
screen.click('29')
screen.click('25')
screen.click('28')
screen.should_contain('4 days')


Expand All @@ -47,6 +47,6 @@ def test_date_with_range_and_multi_selection(screen: Screen):
screen.click('19')
screen.should_contain('4 days')

screen.click('26')
screen.click('29')
screen.click('25')
screen.click('28')
screen.should_contain('8 days')

0 comments on commit fba201a

Please sign in to comment.