tests: raw strings for better readability.

This commit is contained in:
Valentin Lorentz 2020-05-01 23:37:59 +02:00
parent 1854d86476
commit f4d5b866d9
1 changed files with 4 additions and 4 deletions

View File

@ -135,8 +135,8 @@ class IrcMsgTestCase(SupyTestCase):
self.assertEqual(m.repliedTo, 12)
def testServerTags(self):
s = '@aaa=b\\:bb;ccc;example.com/ddd=ee\\\\se ' \
':nick!ident@host.com PRIVMSG me :Hello'
s = r'@aaa=b\:bb;ccc;example.com/ddd=ee\\se ' \
r':nick!ident@host.com PRIVMSG me :Hello'
m = ircmsgs.IrcMsg(s)
self.assertEqual(m.server_tags, {
'aaa': 'b;bb',
@ -149,8 +149,8 @@ class IrcMsgTestCase(SupyTestCase):
m._str = None # Clear the cache (set before parsing)
self.assertEqual(str(m), s + '\r\n')
s = '@foo=;bar=baz;qux= ' \
':nick!ident@host.com PRIVMSG me :Hello'
s = r'@foo=;bar=baz;qux= ' \
r':nick!ident@host.com PRIVMSG me :Hello'
m = ircmsgs.IrcMsg(s)
self.assertEqual(m.server_tags, {
'foo': None,