diff options
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index 4f688cd91..c8576ea60 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1777,7 +1777,7 @@ int main(int argc, char **argv) { self.assertTrue(os.path.isdir(scommondir)) promoted_wrap = os.path.join(spdir, 'athing.wrap') self.assertFalse(os.path.isfile(promoted_wrap)) - subprocess.check_call(self.wrap_command + ['promote', 'athing'], cwd=workdir) + subprocess.check_call(self.wrap_command + ['promote', 'athing.wrap'], cwd=workdir) self.assertTrue(os.path.isfile(promoted_wrap)) self.init(workdir) self.build() |