Skip to content

Commit

Permalink
update is_windows salt.utils to correct path
Browse files Browse the repository at this point in the history
  • Loading branch information
Ch3LL committed Aug 17, 2018
1 parent 3fef112 commit ce5e17b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/states/test_file.py
Expand Up @@ -900,7 +900,7 @@ def test_directory_clean_exclude(self, base_dir):
self.assertFalse(os.path.exists(strayfile2))
self.assertTrue(os.path.exists(keepfile))

@skipIf(salt.utils.is_windows(), 'Skip on windows')
@skipIf(salt.utils.platform.is_windows(), 'Skip on windows')
@with_tempdir()
def test_test_directory_clean_exclude(self, base_dir):
'''
Expand Down

0 comments on commit ce5e17b

Please sign in to comment.