Skip to content

Commit

Permalink
chore: fix test lints
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-makerx committed Mar 22, 2023
1 parent 8f9364a commit 13fea2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test_app_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
from tests.conftest import get_unique_name, read_spec


@pytest.fixture
@pytest.fixture()
def app_spec() -> ApplicationSpecification:
app_spec = read_spec("app_client_test.json", deletable=True, updatable=True)
return app_spec


@pytest.fixture
@pytest.fixture()
def client_fixture(app_spec: ApplicationSpecification) -> ApplicationClient:
algod_client = get_algod_client()
indexer_client = get_indexer_client()
Expand Down
4 changes: 2 additions & 2 deletions tests/test_deploy_scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _wait_for_indexer_round(self, round_target: int, max_attempts: int = 100) ->
break


@pytest.fixture
@pytest.fixture()
def deploy_fixture(caplog: pytest.LogCaptureFixture, request: pytest.FixtureRequest) -> DeployFixture:
caplog.set_level(logging.DEBUG)
return DeployFixture(caplog, request)
Expand Down Expand Up @@ -343,7 +343,7 @@ def test_template_substitution():


@pytest.mark.parametrize(
"current,expected_next",
("current", "expected_next"),
[
("1", "2"),
("v1", "v2"),
Expand Down

0 comments on commit 13fea2d

Please sign in to comment.