mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
The logic should not be negative.
This commit is contained in:
parent
d692a20d6b
commit
2c287803df
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ class InstallationTestCase(BootstrapTestCase):
|
|||
rc, out, err = self.run_script(
|
||||
args=args, timeout=15 * 60, stream_stds=True
|
||||
)
|
||||
if GRAINS['os'] not in ('Ubuntu', 'Trisquel'):
|
||||
if GRAINS['os'] in ('Ubuntu', 'Trisquel'):
|
||||
self.assert_script_result(
|
||||
'Failed to install daily',
|
||||
0, (rc, out, err)
|
||||
|
|
Loading…
Add table
Reference in a new issue