Skip to content

Commit ba19360

Browse files
committed
chore: bump to latest betas
1 parent fc72411 commit ba19360

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies = [
5757
"pytest-mock>=3.10.0",
5858
"pytest-xdist[psutil]>=3.3",
5959
"py-algorand-sdk>=2.4.0",
60-
"algokit-utils>=3.0.0b7",
60+
"algokit-utils>=3.0.0b10",
6161
"pytest-cov>=4.1.0",
6262
"prettytable>=3.9.0",
6363
"mypy==1.10",
@@ -171,7 +171,7 @@ dependencies = [
171171
"pytest-mock>=3.10.0",
172172
"pytest-xdist[psutil]>=3.3",
173173
"py-algorand-sdk>=2.4.0",
174-
"algokit-utils>=3.0.0b7",
174+
"algokit-utils>=3.0.0b10",
175175
"pytest-cov>=4.1.0",
176176
"mypy==1.10",
177177
]

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@pytest.fixture(scope="session")
1111
def algorand() -> AlgorandClient:
1212
client = AlgorandClient.default_localnet()
13-
client.set_suggested_params_timeout(0)
13+
client.set_suggested_params_cache_timeout(0)
1414
return client
1515

1616

tests/test_miscellaneous_op.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import algokit_utils
77
import pytest
88
from _algopy_testing.constants import MAX_BYTES_SIZE, MAX_UINT64, MAX_UINT512
9+
from algokit_utils import AlgorandClient
910
from algopy import BigUInt, UInt64, op
1011

1112
from tests.common import AVMInvoker, create_avm_invoker
@@ -29,7 +30,7 @@ def _too_big_error(max_length: int) -> str:
2930

3031

3132
@pytest.fixture(scope="module")
32-
def get_ops_avm_result(algorand: algokit_utils.AlgorandClient) -> AVMInvoker:
33+
def get_ops_avm_result(algorand: AlgorandClient) -> AVMInvoker:
3334
return create_avm_invoker(APP_SPEC, algorand)
3435

3536

0 commit comments

Comments
 (0)