mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-02 17:25:22 +03:00
Formatting
This commit is contained in:
parent
6054847764
commit
90469e231c
@ -1,3 +1,3 @@
|
|||||||
"""Consts for testing."""
|
"""Consts for testing."""
|
||||||
|
|
||||||
TEST_DB = "test.db"
|
TEST_DB = "test.db"
|
||||||
|
|||||||
@ -305,7 +305,11 @@ class TestHttp(unittest.TestCase):
|
|||||||
|
|
||||||
def test_config(self):
|
def test_config(self):
|
||||||
app = create_app(
|
app = create_app(
|
||||||
FrigateConfig(**self.minimal_config).runtime_config, self.db, None, None, None
|
FrigateConfig(**self.minimal_config).runtime_config,
|
||||||
|
self.db,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
)
|
)
|
||||||
|
|
||||||
with app.test_client() as client:
|
with app.test_client() as client:
|
||||||
@ -315,7 +319,11 @@ class TestHttp(unittest.TestCase):
|
|||||||
|
|
||||||
def test_recordings(self):
|
def test_recordings(self):
|
||||||
app = create_app(
|
app = create_app(
|
||||||
FrigateConfig(**self.minimal_config).runtime_config, self.db, None, None, None
|
FrigateConfig(**self.minimal_config).runtime_config,
|
||||||
|
self.db,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
)
|
)
|
||||||
id = "123456.random"
|
id = "123456.random"
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user