summaryrefslogtreecommitdiff
path: root/tests/functional/test_debug.py
diff options
context:
space:
mode:
authorGregory Oschwald <goschwald@maxmind.com>2013-05-06 10:18:26 -0700
committerGregory Oschwald <goschwald@maxmind.com>2013-05-06 10:18:26 -0700
commitaef80904fe976c56c68c31db35f39b8c1803f687 (patch)
tree48b68b7aaeee29da9630fd8703b6a771885edad2 /tests/functional/test_debug.py
parent42aa501c3cc5870a08db6fb734688485a876f94e (diff)
downloadhttpretty-aef80904fe976c56c68c31db35f39b8c1803f687.tar.gz
Whitespace and 'u' string fixes
Diffstat (limited to 'tests/functional/test_debug.py')
-rw-r--r--tests/functional/test_debug.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functional/test_debug.py b/tests/functional/test_debug.py
index 9872530..ff22fec 100644
--- a/tests/functional/test_debug.py
+++ b/tests/functional/test_debug.py
@@ -41,7 +41,7 @@ def create_socket(context):
@httprettified
@scenario(create_socket)
def test_httpretty_debugs_socket_send(context):
- "HTTPretty should debug socket.send"
+ "HTTPretty should debug socket.send"
expect(context.sock.send).when.called.to.throw(
RuntimeError,
@@ -52,7 +52,7 @@ def test_httpretty_debugs_socket_send(context):
@httprettified
@scenario(create_socket)
def test_httpretty_debugs_socket_sendto(context):
- "HTTPretty should debug socket.sendto"
+ "HTTPretty should debug socket.sendto"
expect(context.sock.sendto).when.called.to.throw(
RuntimeError,
@@ -63,7 +63,7 @@ def test_httpretty_debugs_socket_sendto(context):
@httprettified
@scenario(create_socket)
def test_httpretty_debugs_socket_recv(context):
- "HTTPretty should debug socket.recv"
+ "HTTPretty should debug socket.recv"
expect(context.sock.recv).when.called.to.throw(
RuntimeError,
@@ -74,7 +74,7 @@ def test_httpretty_debugs_socket_recv(context):
@httprettified
@scenario(create_socket)
def test_httpretty_debugs_socket_recvfrom(context):
- "HTTPretty should debug socket.recvfrom"
+ "HTTPretty should debug socket.recvfrom"
expect(context.sock.recvfrom).when.called.to.throw(
RuntimeError,
@@ -85,7 +85,7 @@ def test_httpretty_debugs_socket_recvfrom(context):
@httprettified
@scenario(create_socket)
def test_httpretty_debugs_socket_recv_into(context):
- "HTTPretty should debug socket.recv_into"
+ "HTTPretty should debug socket.recv_into"
expect(context.sock.recv_into).when.called.to.throw(
RuntimeError,
@@ -96,7 +96,7 @@ def test_httpretty_debugs_socket_recv_into(context):
@httprettified
@scenario(create_socket)
def test_httpretty_debugs_socket_recvfrom_into(context):
- "HTTPretty should debug socket.recvfrom_into"
+ "HTTPretty should debug socket.recvfrom_into"
expect(context.sock.recvfrom_into).when.called.to.throw(
RuntimeError,