remove __name__==__main__ in test.tokenise

This commit is contained in:
jesopo 2020-03-11 13:42:57 +00:00
parent 07836f98d4
commit cc8ebbe790
1 changed files with 0 additions and 3 deletions

View File

@ -62,6 +62,3 @@ class TestAll(unittest.TestCase):
self.assertEqual(line.source, "nick!user@host")
self.assertEqual(line.command, "PRIVMSG")
self.assertEqual(line.params, ["#channel", "hello world"])
if __name__ == "__main__":
unittest.main()