diff --git a/AUTHORS b/AUTHORS index b95551e5e7..060393f645 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,3 +12,4 @@ Daniel James Paolo Giarrusso Daniel Andersson Alexander Botero-Lowry +Matt Hanselman diff --git a/tools/test.py b/tools/test.py index ef9cd67f6b..c1a8927ca4 100755 --- a/tools/test.py +++ b/tools/test.py @@ -544,7 +544,7 @@ class TestRepository(TestSuite): file = None try: (file, pathname, description) = imp.find_module('testcfg', [ self.path ]) - module = imp.load_module(self.path, file, pathname, description) + module = imp.load_module('testcfg', file, pathname, description) self.config = module.GetConfiguration(context, self.path) finally: if file: