Fix resource names for the AppController test

Since dependency and definition resources were renamed to
"dependency.appcontroller.k8s" and "definition.appcontroller.k8s"
accordingly we should change expected names in the test

Change-Id: I9951eeadbd4dc41f0797b444ea12462caec7cba5
This commit is contained in:
Volodymyr Shypyguzov 2016-11-07 20:59:58 +02:00
parent 4a4dfb537f
commit 6f7452ee73
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ class AppControllerResoucesStatus(object):
"""Helper class to check defined resources creation of AppController"""
resources = [
"dependency.appcontroller.k8s1",
"definition.appcontroller.k8s2"
"dependency.appcontroller.k8s",
"definition.appcontroller.k8s"
]
def __init__(self, k8sclient, kube_ssh, expected_result=None):