Skip to content

Commit

Permalink
🔨 Quick fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed May 28, 2024
1 parent 2c73164 commit ed625ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/test/integration/test_calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def test_update_existing_caldav_calendar_with_password(self, with_client, with_d
with with_db() as db:
cal = db.scalars(query).one()

assert cal.url == os.getenv("CALDAV_TEST_CALENDAR_URL") + "x"
assert cal.url == os.getenv("CALDAV_TEST_CALENDAR_URL") + "x/"
assert cal.user == os.getenv("CALDAV_TEST_USER") + "x"
assert cal.password == os.getenv("CALDAV_TEST_PASS") + "x"

Expand Down Expand Up @@ -394,6 +394,6 @@ def test_update_existing_caldav_calendar_without_password(self, with_client, wit
with with_db() as db:
cal = db.scalars(query).one()

assert cal.url == os.getenv("CALDAV_TEST_CALENDAR_URL")
assert cal.url == os.getenv("CALDAV_TEST_CALENDAR_URL") + "/"
assert cal.user == os.getenv("CALDAV_TEST_USER")
assert cal.password == ''

0 comments on commit ed625ff

Please sign in to comment.