Skip to content

Commit 9ef69b1

Browse files
committed
cp-396: fixed typos
1 parent cad5bf5 commit 9ef69b1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/client/chain/grpc/test_chain_grpc_erc20_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def erc20_servicer():
1616
return ConfigurableERC20QueryServicer()
1717

1818

19-
class TestChainGrpcBankApi:
19+
class TestChainGrpcERC20Api:
2020
@pytest.mark.asyncio
2121
async def test_fetch_erc20_params(
2222
self,

tests/client/chain/grpc/test_chain_grpc_evm_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def evm_servicer():
1818
return ConfigurableEVMQueryServicer()
1919

2020

21-
class TestChainGrpcBankApi:
21+
class TestChainGrpcEVMApi:
2222
@pytest.mark.asyncio
2323
async def test_fetch_evm_params(
2424
self,
@@ -231,13 +231,13 @@ async def test_fetch_base_fee(self, evm_servicer):
231231
)
232232

233233
api = self._api_instance(evm_servicer)
234-
resposne = await api.fetch_base_fee()
234+
response = await api.fetch_base_fee()
235235

236236
expected_response = {
237237
"baseFee": "160000000",
238238
}
239239

240-
assert resposne["baseFee"] == expected_response["baseFee"]
240+
assert response == expected_response
241241

242242
def _api_instance(self, servicer):
243243
network = Network.devnet()

0 commit comments

Comments
 (0)