File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -694,14 +694,13 @@ def test_load_microbatch_with_ref_no_filter(
694694
695695@pytest .mark .slow
696696def test_load_multiple_snapshots_defined_in_same_file (sushi_test_dbt_context : Context ) -> None :
697- context = sushi_test_dbt_context
698- assert context .get_model ("snapshots.items_snapshot" )
699- assert context .get_model ("snapshots.items_check_snapshot" )
697+ assert sushi_test_dbt_context .get_model ("snapshots.items_snapshot" )
698+ assert sushi_test_dbt_context .get_model ("snapshots.items_check_snapshot" )
700699
701700 # Make sure cache works too
702- context .load ()
703- assert context .get_model ("snapshots.items_snapshot" )
704- assert context .get_model ("snapshots.items_check_snapshot" )
701+ sushi_test_dbt_context .load ()
702+ assert sushi_test_dbt_context .get_model ("snapshots.items_snapshot" )
703+ assert sushi_test_dbt_context .get_model ("snapshots.items_check_snapshot" )
705704
706705
707706@pytest .mark .slow
You can’t perform that action at this time.
0 commit comments