From 0ee0f02626220c169cfe1a5b814b63cc07fc2263 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Thu, 31 Jul 2014 15:43:58 +0200 Subject: Made Python code PEP8 clean --- test.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'test.py') diff --git a/test.py b/test.py index 64734d8..4b1c3f7 100644 --- a/test.py +++ b/test.py @@ -11,6 +11,7 @@ from nose.tools import assert_not_in, assert_true SERVER_PORT = 16667 + class ServerFixture(object): def setUp(self, persistent=False): if persistent: @@ -22,7 +23,7 @@ class ServerFixture(object): # Child. arguments = [ "miniircd", -# "--debug", + # "--debug", "--ports=%d" % SERVER_PORT, ] if persistent: @@ -254,7 +255,9 @@ class TestBasicStuff(ServerFixture): def test_lusers(self): self.connect("apa") self.send("apa", "lusers") - self.expect("apa", r":local\S+ 251 apa :There are \d+ users and \d+ services on \d+ servers*") + self.expect("apa", + r":local\S+ 251 apa :There are \d+ users and \d+ services" + " on \d+ servers*") class TestTwoChannelsStuff(TwoClientsTwoChannelsFixture): -- cgit v1.2.3