File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def test_product_account_update_with_rpc_response_with_data(
61
61
solana_client : SolanaClient ,
62
62
product_account : PythProductAccount ,
63
63
product_account_b64 : str
64
- ):
64
+ ) -> None :
65
65
actual = PythProductAccount (
66
66
key = product_account .key ,
67
67
solana = solana_client ,
@@ -90,7 +90,7 @@ def test_pyth_account_update_with_rpc_response_wrong_type(
90
90
pyth_account : PythAccount ,
91
91
caplog : LogCaptureFixture ,
92
92
product_account_b64 : str
93
- ):
93
+ ) -> None :
94
94
slot = 96866600
95
95
value = {
96
96
'lamports' : 1000000000 ,
@@ -108,7 +108,7 @@ def test_pyth_account_update_with_rpc_response_wrong_type(
108
108
def test_pyth_account_update_with_rpc_response_no_data (
109
109
pyth_account : PythAccount ,
110
110
caplog : LogCaptureFixture
111
- ):
111
+ ) -> None :
112
112
slot = 106498726
113
113
value = {
114
114
"lamports" : 1000000000
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ def mock_get_program_accounts(mocker: MockerFixture) -> AsyncMock:
261
261
return async_mock
262
262
263
263
264
- def test_products_property_not_loaded (pyth_client : PythClient ):
264
+ def test_products_property_not_loaded (pyth_client : PythClient ) -> None :
265
265
with pytest .raises (NotLoadedException ):
266
266
pyth_client .products
267
267
You can’t perform that action at this time.
0 commit comments