minor fixup

This commit is contained in:
Lex Berezhny 2019-10-24 16:48:00 -04:00
parent 622ba2b0e3
commit e5c169ddf8
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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):