Skip to content

Commit

Permalink
Removed a stray whitespace in one of the unit tests from unit.states.…
Browse files Browse the repository at this point in the history
…test_file.
  • Loading branch information
arizvisa committed Oct 16, 2019
1 parent 583db92 commit 9f27cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/states/test_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def return_val(**kwargs):
patch.dict(filestate.__salt__, {'file.user_to_uid': mock_uid}),\
patch.dict(filestate.__salt__, {'file.group_to_gid': mock_gid}),\
patch.dict(filestate.__opts__, {'test': True}):
expected = 'Hard link {0} to {1} is set for creation'.format(name, target)
expected = 'Hard link {0} to {1} is set for creation'.format(name, target)
changes = dict(new=name)
ret = return_val(result=None, comment=expected, name=name, changes=changes)
self.assertDictEqual(filestate.hardlink(name, target,
Expand Down

0 comments on commit 9f27cc6

Please sign in to comment.