Just some renames. Refs #2227.

This commit is contained in:
Pedro Algarvio 2012-10-12 11:53:40 +01:00
parent ae7e476bfc
commit 6533c48014
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
issue-2227-percent-symbol:
issue-2227:
file.append:
- name: /tmp/salttest/test.append
- text: HISTTIMEFORMAT='%F %T '

View File

@ -384,7 +384,7 @@ class FileTest(integration.ModuleCase):
# Now our real test
try:
ret = self.run_function(
'state.sls', mods='testappend.issue-2227-percent-symbol'
'state.sls', mods='testappend.issue-2227'
)
for change in ret.values():
self.assertTrue(isinstance(change, dict))
@ -393,7 +393,7 @@ class FileTest(integration.ModuleCase):
# It should not append text again
ret = self.run_function(
'state.sls', mods='testappend.issue-2227-percent-symbol'
'state.sls', mods='testappend.issue-2227'
)
for change in ret.values():
self.assertTrue(isinstance(change, dict))