Bug 1464869 - Fix flake8/pep8 issue by hand in mozglue/ draft
authorSylvestre Ledru <sledru@mozilla.com>
Fri, 25 May 2018 21:28:12 -0700
changeset 804340 a7980fec1b5d8e7f7866c5abdff6b7c1e417cf79
parent 804157 752465b44c793318cef36df46ca5ff00c3d8854a
child 804341 729b66e193cbc0704ea695bc6af17e651ccdca35
push id112354
push usersledru@mozilla.com
push dateTue, 05 Jun 2018 20:25:44 +0000
bugs1464869
milestone62.0a1
Bug 1464869 - Fix flake8/pep8 issue by hand in mozglue/ MozReview-Commit-ID: 4U31tUZPm8U
mozglue/linker/tests/run_test_zip.py
--- a/mozglue/linker/tests/run_test_zip.py
+++ b/mozglue/linker/tests/run_test_zip.py
@@ -4,18 +4,20 @@
 # http://creativecommons.org/publicdomain/zero/1.0/
 
 import buildconfig
 import mozpack.path as mozpath
 import mozunit
 import subprocess
 import unittest
 
+
 class TestZip(unittest.TestCase):
     def test_zip(self):
         srcdir = mozpath.dirname(__file__)
         relsrcdir = mozpath.relpath(srcdir, buildconfig.topsrcdir)
         test_bin = mozpath.join(buildconfig.topobjdir, relsrcdir,
                                 'TestZip' + buildconfig.substs['BIN_SUFFIX'])
         self.assertEqual(0, subprocess.call([test_bin, srcdir]))
 
+
 if __name__ == '__main__':
     mozunit.main()