Skip to content

Commit

Permalink
revert tests
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Sep 20, 2023
1 parent 2fee249 commit 23c2bbc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/test_wallet_p2pk.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,16 +300,14 @@ async def test_p2pk_multisig_with_wrong_first_private_key(


def test_tags():
tags = Tags(
[["key1", "value1"], ["key2", "value2", "value2_1"], ["key2", "value3"]]
)
tags = Tags([["key1", "value1"], ["key2", "value2"], ["key2", "value3"]])
assert tags.get_tag("key1") == "value1"
assert tags["key1"] == "value1"
assert tags.get_tag("key2") == "value2"
assert tags["key2"] == "value2"
assert tags.get_tag("key3") is None
assert tags["key3"] is None
assert tags.get_tag_all("key2") == ["value2", "value2_1", "value3"]
assert tags.get_tag_all("key2") == ["value2", "value3"]


@pytest.mark.asyncio
Expand Down

0 comments on commit 23c2bbc

Please sign in to comment.