File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,9 @@ def test_dbt_hook_download_dbt_profiles():
9696 hook = DbtHook ()
9797 hook .remotes [("" , None )] = FakeRemote () # type: ignore
9898
99- args , kwargs = hook .download_dbt_profiles ("/path/to/profiles" , "/path/to/store" ) # type: ignore
99+ args , kwargs = hook .download_dbt_profiles (
100+ "/path/to/profiles" , "/path/to/store"
101+ ) # type: ignore
100102
101103 assert args == ("/path/to/profiles" , "/path/to/store" )
102104 assert kwargs == {}
@@ -123,7 +125,9 @@ def test_dbt_hook_download_dbt_project():
123125 hook = DbtHook (project_conn_id = "conn_id" )
124126 hook .remotes [("" , "conn_id" )] = FakeRemote () # type: ignore
125127
126- args , kwargs = hook .download_dbt_project ("/path/to/profiles" , "/path/to/store" ) # type: ignore
128+ args , kwargs = hook .download_dbt_project (
129+ "/path/to/profiles" , "/path/to/store"
130+ ) # type: ignore
127131
128132 assert args == ("/path/to/profiles" , "/path/to/store" )
129133 assert kwargs == {}
You can’t perform that action at this time.
0 commit comments