Skip to content

Commit

Permalink
revert test name
Browse files Browse the repository at this point in the history
  • Loading branch information
aranke committed Jun 5, 2024
1 parent 02a388e commit d89f33d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/dependencies/test_dependency_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ def test_deps_add(self, clean_start):
)
assert len(os.listdir("dbt_packages")) == 3

def test_deps_add_without_install(self, clean_start):
def test_deps_add_dry_run(self, clean_start):
os.rename("packages.yml", "dependencies.yml")
run_dbt(
[
"deps",
"--add-package",
"dbt-labs/[email protected]",
"--lock",
"--dry-run",
]
)
assert not os.path.exists("dbt_packages")
Expand Down

0 comments on commit d89f33d

Please sign in to comment.