From 87592de2eb85b91986ac628dcf42b972a9631c48 Mon Sep 17 00:00:00 2001 From: Roger Sikorski Date: Fri, 24 Nov 2023 08:15:21 +0100 Subject: [PATCH] bugfix/config_private-fixed-missing-comma --- tests/conf_private.py.EXAMPLE | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tests/conf_private.py.EXAMPLE b/tests/conf_private.py.EXAMPLE index ba2d6670..994882a6 100644 --- a/tests/conf_private.py.EXAMPLE +++ b/tests/conf_private.py.EXAMPLE @@ -9,16 +9,15 @@ from tests import compatibility_issues ## Define your primary caldav server here caldav_servers = [ - { - ## Set enable to False if you don't want to use a server - 'enable': True + { + ## Set enable to False if you don't want to use a server + 'enable': True, ## This is all that is really needed - url, username and ## password. (the URL may even include username and password) 'url': 'https://some.server.example.com', 'username': 'testuser', 'password': 'hunter2', - ## skip ssl cert verification, for self-signed certificates ## (sort of moot nowadays with letsencrypt freely available) #'ssl_cert_verify': False @@ -27,8 +26,8 @@ caldav_servers = [ ## skipping (parts) of certain tests. See ## tests/compatibility_issues.py for premade lists #'incompatibilities': compatibility_issues.nextcloud - 'incompatibilities': [], - } + 'incompatibilities': [], + } ]