mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #49331 from dwoz/strfix
Use salt.utils to ensure string type
This commit is contained in:
commit
a2e7033f33
1 changed files with 1 additions and 1 deletions
|
@ -2119,7 +2119,7 @@ class FileTest(ModuleCase, SaltReturnAssertsMixin):
|
|||
'#-- end salt managed zoneend --',
|
||||
'']
|
||||
|
||||
self.assertEqual([line.encode('utf-8') for line in expected], contents)
|
||||
self.assertEqual([salt.utils.stringutils.to_str(line) for line in expected], contents)
|
||||
|
||||
@with_tempdir()
|
||||
def test_issue_11003_immutable_lazy_proxy_sum(self, base_dir):
|
||||
|
|
Loading…
Add table
Reference in a new issue