Skip to content

Commit e6c6733

Browse files
committed
chore: fix improper rebase issue
Signed-off-by: Manish Dait <[email protected]>
1 parent 500229a commit e6c6733

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/unit/contract_id_test.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
@pytest.fixture
1616
def client(mock_client):
17-
mock_client.network.ledger_id = bytes.fromhex("00") # mainnet ledger id
1817
mock_client.network.ledger_id = bytes.fromhex("00") # mainnet ledger id
1918
return mock_client
2019

@@ -86,7 +85,6 @@ def test_from_string_for_valid_str(contract_str, expected):
8685

8786

8887
@pytest.mark.parametrize(
89-
"invalid_id",
9088
"invalid_id",
9189
[
9290
"1.2", # Too few parts
@@ -327,10 +325,6 @@ def test_str_representaion_checksum_with_evm_address(client):
327325
"""Should raise error on to_string_with_checksum is called when evm_address is set"""
328326
contract_id = ContractId.from_string("0.0.abcdef0123456789abcdef0123456789abcdef01")
329327

330-
with pytest.raises(
331-
ValueError,
332-
match="to_string_with_checksum cannot be applied to ContractId with evm_address",
333-
):
334328
with pytest.raises(
335329
ValueError,
336330
match="to_string_with_checksum cannot be applied to ContractId with evm_address",

0 commit comments

Comments
 (0)