Commit 88852c4b by Jay Zoldak

pep8 and pylint cleanup of new files

parent 442141fa
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
import json import json
import urlparse
from logging import getLogger from logging import getLogger
logger = getLogger(__name__) logger = getLogger(__name__)
......
import mock
import unittest import unittest
import threading import threading
import json import json
import urllib
import urllib2 import urllib2
from mock_cs_server import MockCommentServiceServer, MockCommentServiceRequestHandler from mock_cs_server import MockCommentServiceServer
from nose.plugins.skip import SkipTest from nose.plugins.skip import SkipTest
...@@ -18,7 +16,7 @@ class MockCommentServiceServerTest(unittest.TestCase): ...@@ -18,7 +16,7 @@ class MockCommentServiceServerTest(unittest.TestCase):
# This is a test of the test setup, # This is a test of the test setup,
# so it does not need to run as part of the unit test suite # so it does not need to run as part of the unit test suite
# You can re-enable it by commenting out the line below # You can re-enable it by commenting out the line below
# raise SkipTest raise SkipTest
# Create the server # Create the server
server_port = 4567 server_port = 4567
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment