Skip to content

Commit

Permalink
fix the test
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed May 18, 2020
1 parent a580a57 commit be85b7d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/test_sys_checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit be85b7d

Please sign in to comment.