From 3c1db0fbe9cdd62ced23976b1c2dd293d8dde8ad Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Wed, 30 May 2012 22:30:28 -0700 Subject: [PATCH] reorganize imports in test_irc.py --- tests/test_irc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_irc.py b/tests/test_irc.py index 1540152..49ab0d6 100644 --- a/tests/test_irc.py +++ b/tests/test_irc.py @@ -6,10 +6,11 @@ Tests for phenny's irc.py import sys sys.path.append('.') -import irc import unittest from mock import call, patch, Mock +import irc + class OriginTest(unittest.TestCase): def setUp(self):