diff --git a/openstack/tests/unit/orchestration/v1/test_stack.py b/openstack/tests/unit/orchestration/v1/test_stack.py index c1a35c661..7ac4fef96 100644 --- a/openstack/tests/unit/orchestration/v1/test_stack.py +++ b/openstack/tests/unit/orchestration/v1/test_stack.py @@ -181,7 +181,7 @@ class TestStack(base.TestCase): @mock.patch.object(resource.Resource, 'create') def test_create(self, mock_create): sess = mock.Mock() - sot = stack.Stack(FAKE) + sot = stack.Stack() res = sot.create(sess) @@ -193,7 +193,7 @@ class TestStack(base.TestCase): @mock.patch.object(resource.Resource, 'commit') def test_commit(self, mock_commit): sess = mock.Mock() - sot = stack.Stack(FAKE) + sot = stack.Stack() res = sot.commit(sess)