diff --git a/test/test_sys_checkout.py b/test/test_sys_checkout.py index 532445281..2989a92a7 100644 --- a/test/test_sys_checkout.py +++ b/test/test_sys_checkout.py @@ -1361,14 +1361,13 @@ def test_container_exclude_component(self): # create the top level externals file self._generator.container_full(under_test_dir) - # inital checkout, first try a nonexistant component argument noref - checkout_args = ['--exclude','simp_opt'] + # inital checkout, exclude simp_opt + checkout_args = ['--exclude','simp_opt', '--logging'] checkout_args.extend(self.checkout_args) - save_checkout_args = self.checkout_args - self.checkout_args = checkout_args + overall, tree = self.execute_cmd_in_dir(under_test_dir, checkout_args) + checkout_args.append("--status") overall, tree = self.execute_cmd_in_dir(under_test_dir, checkout_args) self._check_container_component_post_checkout3(overall, tree) - self.checkout_args = save_checkout_args def test_mixed_simple(self): """Verify that a mixed use repo can serve as a 'full' container,