aboutsummaryrefslogtreecommitdiff
path: root/tests/playwright/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/playwright/conftest.py')
-rw-r--r--tests/playwright/conftest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/playwright/conftest.py b/tests/playwright/conftest.py
index 1130df2..efa82c6 100644
--- a/tests/playwright/conftest.py
+++ b/tests/playwright/conftest.py
@@ -118,8 +118,9 @@ class Helper:
title="Another awesome track",
visibility=Visibility.PRIVATE,
description="Another description",
+ type=TrackType.ORGANIC,
)
- track.date = datetime.datetime.now(datetime.timezone.utc)
+ track.date = datetime.datetime(2022, 12, 21, 17, 5, tzinfo=datetime.timezone.utc)
user.tracks.append(track)
self.dbaccess.flush()
self.dbaccess.refresh(track, ["id"])