mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Keep the same exception raised before the move
This commit is contained in:
parent
6a638620ba
commit
104a2fb30c
1 changed files with 2 additions and 1 deletions
|
@ -32,6 +32,7 @@ from tests.support.paths import CODE_DIR
|
|||
# Import salt libs
|
||||
#import salt.config
|
||||
import salt.version
|
||||
import salt.exceptions
|
||||
from salt.utils.verify import verify_env
|
||||
from salt.utils.immutabletypes import freeze
|
||||
from salt._compat import ElementTree as etree
|
||||
|
@ -668,7 +669,7 @@ class SaltMinionEventAssertsMixin(object):
|
|||
|
||||
def assertMinionEventFired(self, tag):
|
||||
#TODO
|
||||
raise NotImplementedError('assertMinionEventFired() not implemented')
|
||||
raise salt.exceptions.NotImplemented('assertMinionEventFired() not implemented')
|
||||
|
||||
def assertMinionEventReceived(self, desired_event):
|
||||
queue_wait = 5 # 2.5s
|
||||
|
|
Loading…
Add table
Reference in a new issue