Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/reflection_handler_unittest.py

Issue 2329263002: Run format-webkitpy and fix long lines. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/reflection_handler_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/reflection_handler_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/reflection_handler_unittest.py
index a7c999c9d5ccaf9d9cdfc9ada795a459af22af0d..69980cd21080b694e29942f8cab06c422db3e37e 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/reflection_handler_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/reflection_handler_unittest.py
@@ -98,7 +98,8 @@ class ReflectionHandlerTest(unittest.TestCase):
self.assert_handler_response(["/some.html"], set(["some.html"]), set(), set())
def test_svn_log_non_ascii(self):
- xmlChangelog = u'<?xml version="1.0"?>\n<log>\n<logentry revision="1">\n<msg>Patch from John Do\xe9.</msg>\n</logentry>\n</log>'
+ xml_change_log = (u'<?xml version="1.0"?>\n<log>\n<logentry revision="1">\n'
+ u'<msg>Patch from John Do\xe9.</msg>\n</logentry>\n</log>')
handler = TestReflectionHandlerServeXML()
- handler.serve_xml(xmlChangelog)
- self.assertEqual(handler.wfile.data, xmlChangelog.encode('utf-8'))
+ handler.serve_xml(xml_change_log)
+ self.assertEqual(handler.wfile.data, xml_change_log.encode('utf-8'))

Powered by Google App Engine
This is Rietveld 408576698