mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-10 12:51:11 +03:00
Reuse constants in media auth tests
This commit is contained in:
@@ -20,6 +20,7 @@ from frigate.api.media_auth import (
|
|||||||
resolve_media_uri,
|
resolve_media_uri,
|
||||||
)
|
)
|
||||||
from frigate.config import FrigateConfig
|
from frigate.config import FrigateConfig
|
||||||
|
from frigate.const import EXPORT_DIR
|
||||||
from frigate.models import Event, Export, Recordings, ReviewSegment
|
from frigate.models import Event, Export, Recordings, ReviewSegment
|
||||||
from frigate.test.const import TEST_DB, TEST_DB_CLEANUPS
|
from frigate.test.const import TEST_DB, TEST_DB_CLEANUPS
|
||||||
|
|
||||||
@@ -231,8 +232,8 @@ class TestExportResolution(unittest.TestCase):
|
|||||||
camera=camera,
|
camera=camera,
|
||||||
name=f"export-{export_id}",
|
name=f"export-{export_id}",
|
||||||
date=int(datetime.datetime.now().timestamp()),
|
date=int(datetime.datetime.now().timestamp()),
|
||||||
video_path=f"/media/frigate/exports/{filename}",
|
video_path=os.path.join(EXPORT_DIR, filename),
|
||||||
thumb_path=f"/media/frigate/exports/{filename}.jpg",
|
thumb_path=os.path.join(EXPORT_DIR, f"{filename}.jpg"),
|
||||||
in_progress=False,
|
in_progress=False,
|
||||||
).execute()
|
).execute()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user