Merge pull request #30301 from cachedout/fix_state_tests

Accept whatever comes into hightstate mock for state tests
This commit is contained in:
Mike Place 2016-01-12 11:33:13 -07:00
commit 3a5a84a790

View file

@ -133,7 +133,7 @@ class MockState(object):
flag = False
opts = {'state_top': ""}
def __init__(self, opts, pillar=None, mocked=None):
def __init__(self, opts, pillar=None, *args, **kwargs):
self.state = MockState.State(opts,
pillar=pillar)