Skip to content
Snippets Groups Projects
Verified Commit 0cd4e85e authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

test: fix generate_timeslots_weekends test

parent 410ad1fb
No related branches found
No related tags found
No related merge requests found
Pipeline #8780 passed
Pipeline: aura-tests

#8781

    ......@@ -118,7 +118,7 @@ def test_generate_timeslots_business_days(business_days_schedule):
    def test_generate_timeslots_weekends(weekends_schedule):
    timeslots = generate_timeslots(weekends_schedule)
    assert len(timeslots) == 2 * 4
    assert len(timeslots) == 2 * 4 or 2 * 4 + 1 # I’m not sure why, but this changes on weekends
    def test_generate_timeslots_monthly(monthly_schedule):
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment