mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Honor 80 char limit
This commit is contained in:
parent
26b23b37bc
commit
35505ac966
1 changed files with 2 additions and 1 deletions
|
@ -152,7 +152,8 @@ class DiskTestCase(TestCase, LoaderModuleMockMixin):
|
|||
with patch.dict(disk.__salt__, {'cmd.retcode': mock}):
|
||||
self.assertEqual(disk.format_(device), True)
|
||||
|
||||
@skipIf(not salt.utils.which('lsblk') and not salt.utils.which('df'), 'lsblk or df not found')
|
||||
@skipIf(not salt.utils.which('lsblk') and not salt.utils.which('df'),
|
||||
'lsblk or df not found')
|
||||
def test_fstype(self):
|
||||
'''
|
||||
unit tests for disk.fstype
|
||||
|
|
Loading…
Add table
Reference in a new issue