mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix some lint
This commit is contained in:
parent
0f38eea9a0
commit
2bf6179743
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ class DiskUsageBeaconTestCase(TestCase, LoaderModuleMockMixin):
|
|||
self.assertEqual(ret, [{'diskusage': 50, 'mount': '/'}])
|
||||
|
||||
def test_diskusage_windows_single_slash(self):
|
||||
'''
|
||||
r'''
|
||||
This tests new behavior (C:\)
|
||||
'''
|
||||
disk_usage_mock = Mock(return_value=WINDOWS_STUB_DISK_USAGE)
|
||||
|
@ -159,7 +159,7 @@ class DiskUsageBeaconTestCase(TestCase, LoaderModuleMockMixin):
|
|||
self.assertEqual(ret, [{'diskusage': 50, 'mount': 'C:\\'}])
|
||||
|
||||
def test_diskusage_windows_lowercase(self):
|
||||
'''
|
||||
r'''
|
||||
This tests lowercase drive letter (c:\)
|
||||
'''
|
||||
disk_usage_mock = Mock(return_value=WINDOWS_STUB_DISK_USAGE)
|
||||
|
|
Loading…
Add table
Reference in a new issue