We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8896480 commit 8dfabbfCopy full SHA for 8dfabbf
tests/test_endpoints/test_timelines.py
@@ -22,6 +22,8 @@
22
23
import unittest
24
25
+from gramps.gen.utils.config import config
26
+
27
from . import BASE_URL, get_test_client
28
from .checks import (
29
check_conforms_to_schema,
@@ -45,6 +47,9 @@ class TestTimelinesPeople(unittest.TestCase):
45
47
@classmethod
46
48
def setUpClass(cls):
49
"""Test class setup."""
50
51
+ config.set("preferences.date-format", 0)
52
53
cls.client = get_test_client()
54
55
def test_get_timelines_people_requires_token(self):
0 commit comments