Python cleanups, round 2: line too long, etc.
- Line too long (>80)
- Pointless continuation (\) characters
- Trailing semi-colon
- 'not foo in bar' -> 'foo not in bar'
Change-Id: I7acb7f166d2f945005bf5578a740b887b1654597
diff --git a/tools/util_test.py b/tools/util_test.py
index 8af3231..fa67696 100644
--- a/tools/util_test.py
+++ b/tools/util_test.py
@@ -24,7 +24,8 @@
def testKnown(self):
url = resolve_url('GERRIT:foo.jar', {})
- self.assertEqual(url, 'http://gerrit-maven.storage.googleapis.com/foo.jar')
+ self.assertEqual(url,
+ 'http://gerrit-maven.storage.googleapis.com/foo.jar')
def testKnownRedirect(self):
url = resolve_url('MAVEN_CENTRAL:foo.jar',
@@ -37,7 +38,8 @@
def testCustomRedirect(self):
url = resolve_url('MAVEN_EXAMPLE:foo.jar',
- {'MAVEN_EXAMPLE': 'http://maven.example.com/release'})
+ {'MAVEN_EXAMPLE':
+ 'http://maven.example.com/release'})
self.assertEqual(url, 'http://maven.example.com/release/foo.jar')