From ed625ff626076d26c7d4773df2e26710a82f0b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 28 May 2024 12:10:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Quick=20fix=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/test/integration/test_calendar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/test/integration/test_calendar.py b/backend/test/integration/test_calendar.py index d9d4a8566..5b84eac4c 100644 --- a/backend/test/integration/test_calendar.py +++ b/backend/test/integration/test_calendar.py @@ -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" @@ -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 == ''