File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 1515 MurfeyLedger ,
1616 ProcessingJob ,
1717)
18- from murfey .util .db import Session as MurfeySession
1918from tests .conftest import ExampleVisit , get_or_create_db_entry
2019
2120# @pytest.fixture(scope="module")
@@ -52,24 +51,23 @@ def test_movie_count(
5251):
5352
5453 # Insert table dependencies
55- session_entry : MurfeySession = get_or_create_db_entry (
56- murfey_db_session ,
57- MurfeySession ,
58- lookup_kwargs = {"id" : ExampleVisit .murfey_session_id },
59- )
6054 dcg_entry : DataCollectionGroup = get_or_create_db_entry (
6155 murfey_db_session ,
6256 DataCollectionGroup ,
6357 lookup_kwargs = {
6458 "id" : 0 ,
65- "session_id" : session_entry . id ,
59+ "session_id" : ExampleVisit . murfey_session_id ,
6660 "tag" : "test_dcg" ,
6761 },
6862 )
6963 dc_entry : DataCollection = get_or_create_db_entry (
7064 murfey_db_session ,
7165 DataCollection ,
72- lookup_kwargs = {"id" : 0 , "tag" : "test_dc" , "dcg_id" : dcg_entry .id },
66+ lookup_kwargs = {
67+ "id" : 0 ,
68+ "tag" : "test_dc" ,
69+ "dcg_id" : dcg_entry .id ,
70+ },
7371 )
7472 processing_job_entry : ProcessingJob = get_or_create_db_entry (
7573 murfey_db_session ,
You can’t perform that action at this time.
0 commit comments