Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Apr 23, 2024
1 parent 050535f commit 9562b23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/functional/context_methods/test_env_vars.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import pytest
import os

from dbt.constants import SECRET_ENV_PREFIX, DEFAULT_ENV_PLACEHOLDER
from dbt.constants import DEFAULT_ENV_PLACEHOLDER
from dbt_common.constants import SECRET_ENV_PREFIX
from dbt.tests.util import run_dbt, get_manifest, run_dbt_and_capture


Expand Down
2 changes: 1 addition & 1 deletion tests/functional/context_methods/test_secret_env_vars.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
import os

from dbt.constants import SECRET_ENV_PREFIX
from dbt_common.constants import SECRET_ENV_PREFIX
from dbt.exceptions import ParsingError, DbtInternalError
from tests.functional.context_methods.first_dependency import FirstDependencyProject
from dbt.tests.util import run_dbt, run_dbt_and_capture, read_file
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/partial_parsing/test_pp_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path

import pytest
from dbt.constants import SECRET_ENV_PREFIX
from dbt_common.constants import SECRET_ENV_PREFIX
from dbt.exceptions import ParsingError
from dbt.adapters.exceptions import FailedToConnectError
from dbt.tests.util import get_manifest, run_dbt, run_dbt_and_capture, write_file
Expand Down

0 comments on commit 9562b23

Please sign in to comment.