diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2017-02-25 22:05:50 +0100 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2017-02-25 22:06:51 +0100 |
commit | 170e952fff39e480e8f8087c804472c44a540cb2 (patch) | |
tree | 5b6ba9c9a54e366bfce72ace5e2522ef437d96cd | |
parent | c265649364d5c5b2f690d5b769c34a993a1badf1 (diff) | |
download | miniircd-170e952fff39e480e8f8087c804472c44a540cb2.tar.gz miniircd-170e952fff39e480e8f8087c804472c44a540cb2.zip |
Fix test cases after c2656493
-rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ class ServerFixture(object): self.expect(nick, r":local\S+ 001 %s :.*" % nick) self.expect(nick, r":local\S+ 002 %s :.*" % nick) self.expect(nick, r":local\S+ 003 %s :.*" % nick) - self.expect(nick, r":local\S+ 004 %s :.*" % nick) + self.expect(nick, r":local\S+ 004 %s .*" % nick) self.expect(nick, r":local\S+ 251 %s :.*" % nick) self.expect(nick, r":local\S+ 422 %s :.*" % nick) |