]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Tests/TestTools.py
BaseTools: Clean up source files
[mirror_edk2.git] / BaseTools / Tests / TestTools.py
index 20a4ea28aa11b0622429cd222b932d94e92b146c..e16e993048e469ea58481e40955375deb40ba298 100644 (file)
@@ -2,7 +2,7 @@ from __future__ import print_function
 ## @file\r
 # Utility functions and classes for BaseTools unit tests\r
 #\r
-#  Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>\r
+#  Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>\r
 #\r
 #  This program and the accompanying materials\r
 #  are licensed and made available under the terms and conditions of the BSD License\r
@@ -78,7 +78,7 @@ class BaseToolsTest(unittest.TestCase):
     def HandleTreeDeleteError(self, function, path, excinfo):\r
         os.chmod(path, stat.S_IWRITE)\r
         function(path)\r
-    \r
+\r
     def RemoveDir(self, dir):\r
         shutil.rmtree(dir, False, self.HandleTreeDeleteError)\r
 \r
@@ -160,7 +160,7 @@ class BaseToolsTest(unittest.TestCase):
         if minlen is None: minlen = 1024\r
         if maxlen is None: maxlen = minlen\r
         return ''.join(\r
-            [chr(random.randint(0,255))\r
+            [chr(random.randint(0, 255))\r
              for x in xrange(random.randint(minlen, maxlen))\r
             ])\r
 \r