forked from LBRYCommunity/lbry-sdk
minor fixup
This commit is contained in:
parent
622ba2b0e3
commit
e5c169ddf8
2 changed files with 3 additions and 2 deletions
|
@ -120,5 +120,5 @@ class BaseMessageList(Metadata, Generic[I]):
|
|||
def __delitem__(self, key):
|
||||
del self._message[key]
|
||||
|
||||
def __eq__(self, values: List[str]) -> bool:
|
||||
return self._message == values
|
||||
def __eq__(self, other) -> bool:
|
||||
return self._message == other
|
||||
|
|
|
@ -537,6 +537,7 @@ class ChannelCommands(CommandTestCase):
|
|||
tx4 = await self.channel_update(claim_id, tags=[' pqr', 'PQr '], clear_tags=True)
|
||||
self.assertEqual(tx4['outputs'][0]['value']['tags'], ['pqr'])
|
||||
|
||||
|
||||
class StreamCommands(ClaimTestCase):
|
||||
|
||||
async def test_create_stream_names(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue