Skip to content

Commit

Permalink
bugfix/config_private-fixed-missing-comma
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerSik authored and tobixen committed Nov 24, 2023
1 parent 8217e63 commit 5f2e8df
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/conf_private.py.EXAMPLE
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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': [],
}
]


Expand Down

0 comments on commit 5f2e8df

Please sign in to comment.