File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff 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]
Original file line number Diff line number Diff line change 1010@pytest .fixture (scope = "session" )
1111def 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
Original file line number Diff line number Diff line change 66import algokit_utils
77import pytest
88from _algopy_testing .constants import MAX_BYTES_SIZE , MAX_UINT64 , MAX_UINT512
9+ from algokit_utils import AlgorandClient
910from algopy import BigUInt , UInt64 , op
1011
1112from 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
You can’t perform that action at this time.
0 commit comments