summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-26 00:48:48 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-26 00:48:48 +0100
commit1e788d2a6ede52af99f6ff33e4589257ff7c7e6e (patch)
tree438f1a8f7bb2900ece5bff21f2705522b7671ee6
parent2bc78056e8269e4a0986104208533a68d0f58f11 (diff)
downloadpep8-1e788d2a6ede52af99f6ff33e4589257ff7c7e6e.tar.gz
Remove an extra comma in the test
-rw-r--r--testsuite/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/test_api.py b/testsuite/test_api.py
index ea18eca..7a4097a 100644
--- a/testsuite/test_api.py
+++ b/testsuite/test_api.py
@@ -336,7 +336,7 @@ class APITestCase(unittest.TestCase):
expected = "stdin:1:2: E901 SyntaxError"
else:
expected = "stdin:1:1: E901 TypeError"
- self.assertTrue(stdout.startswith(expected),,
+ self.assertTrue(stdout.startswith(expected),
msg='Output %r does not start with %r' %
(stdout, expected))
self.assertFalse(sys.stderr)