Skip to content

Commit

Permalink
Merge pull request #3833 from anubhavp28/remove_unused_var
Browse files Browse the repository at this point in the history
removes unused var
  • Loading branch information
dangra committed Jun 17, 2019
2 parents cdfb20a + b8900ec commit 31cdb94
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_downloadermiddleware.py
Expand Up @@ -123,7 +123,6 @@ class ProcessRequestInvalidOutput(ManagerTestCase):

def test_invalid_process_request(self):
req = Request('http://example.com/index.html')
resp = Response('http://example.com/index.html')

class InvalidProcessRequestMiddleware:
def process_request(self, request, spider):
Expand All @@ -143,7 +142,6 @@ class ProcessResponseInvalidOutput(ManagerTestCase):

def test_invalid_process_response(self):
req = Request('http://example.com/index.html')
resp = Response('http://example.com/index.html')

class InvalidProcessResponseMiddleware:
def process_response(self, request, response, spider):
Expand All @@ -163,7 +161,6 @@ class ProcessExceptionInvalidOutput(ManagerTestCase):

def test_invalid_process_exception(self):
req = Request('http://example.com/index.html')
resp = Response('http://example.com/index.html')

class InvalidProcessExceptionMiddleware:
def process_request(self, request, spider):
Expand Down

0 comments on commit 31cdb94

Please sign in to comment.