Skip to content

Commit

Permalink
comment out certain tests to see if coverage drops.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhadfield committed Jun 26, 2016
1 parent bdbcf44 commit e8cfcc4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ def test_execute_plan_to_update_existing_user_with_multiple_keys():
execute_plan(plan=plan)
updated_users = Users.from_passwd()
updated_user = updated_users.describe_users(users_filter=dict(name='testuserx1234'))
assert len(updated_user) == 1
assert updated_user[0].name == 'testuserx1234'
assert updated_user[0].uid == 59998
assert updated_user[0].gid == 1
assert updated_user[0].gecos == '\"test user gecos update\"'
assert updated_user[0].shell == '/bin/false'
# assert len(updated_user) == 1
# assert updated_user[0].name == 'testuserx1234'
# assert updated_user[0].uid == 59998
# assert updated_user[0].gid == 1
# assert updated_user[0].gecos == '\"test user gecos update\"'
# assert updated_user[0].shell == '/bin/false'
assert updated_user[0].public_keys[0].raw == six.text_type(PUBLIC_KEYS[0]['raw'])
delete_test_user_and_group()

Expand Down

0 comments on commit e8cfcc4

Please sign in to comment.