From 9eb9c807576a25c381237f111f101c1ab9d93e4d Mon Sep 17 00:00:00 2001 From: Kien Nguyen Date: Sun, 3 Sep 2017 09:10:11 +0700 Subject: [PATCH] [TrivialFix] Change container_id to right value. Change-Id: I5479a5ea30a125791176575bd0420e926e7a465e --- barbican/tests/api/test_resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barbican/tests/api/test_resources.py b/barbican/tests/api/test_resources.py index 92c8c8ec2..f7d0b7a9a 100644 --- a/barbican/tests/api/test_resources.py +++ b/barbican/tests/api/test_resources.py @@ -97,7 +97,7 @@ def create_container(id_ref, project_id=None, external_project_id=None): container.name = 'test name' container.type = 'rsa' container_secret = models.ContainerSecret() - container_secret.container_id = id + container_secret.container_id = id_ref container_secret.secret_id = '123' container.container_secrets.append(container_secret)