Skip to content

Commit

Permalink
fix(test): fix delete smoke test (datahub-project#6585)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker authored and cccs-Dustin committed Feb 1, 2023
1 parent 122a5bd commit f685a98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smoke-test/tests/delete/delete_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_healthchecks(wait_for_healthchecks):
pass


@pytest.fixture(autouse=True)
@pytest.fixture(autouse=False)
def test_setup():
"""Fixture to execute asserts before and after a test is run"""

Expand Down Expand Up @@ -53,7 +53,7 @@ def test_setup():


@pytest.mark.dependency()
def test_delete_reference(depends=["test_healthchecks"]):
def test_delete_reference(test_setup, depends=["test_healthchecks"]):
platform = "urn:li:dataPlatform:kafka"
dataset_name = "test-delete"

Expand Down

0 comments on commit f685a98

Please sign in to comment.