X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=xapp_onboarder%2Ftests%2Ftest_helm_controller.py;h=1298d1e57ec9a8c93822b3a077d009c795f14341;hb=a9b4e2aca7fdaae20d576805e136a17342f4c625;hp=094cf9fed079b1b39e26ec6ac64bbdfd6e3ede2b;hpb=3b56acc14a2308e853612e22738cd44687288149;p=it%2Fdev.git diff --git a/xapp_onboarder/tests/test_helm_controller.py b/xapp_onboarder/tests/test_helm_controller.py index 094cf9f..1298d1e 100644 --- a/xapp_onboarder/tests/test_helm_controller.py +++ b/xapp_onboarder/tests/test_helm_controller.py @@ -16,7 +16,7 @@ import os import shutil from xapp_onboarder.helm_controller.xApp_builder import xApp, xAppError -from tests.constants import config_file, schema_file +from tests.constants import config_file, controls_schema_file from xapp_onboarder.server import settings @@ -25,7 +25,7 @@ def test_packaging_xapp(client): if os.path.exists(chart_workspace_path): shutil.rmtree(chart_workspace_path) - xapp = xApp(config_file, schema_file) + xapp = xApp(config_file, controls_schema_file) xapp.package_chart() assert os.path.isfile(chart_workspace_path + '/test_xapp-1.0.0.tgz'), 'xApp packaging error'