From 9052914c2e70c5f20282e6f1604581ffed031877 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 20 Mar 2024 08:28:29 +0100 Subject: [PATCH] Fix typo in template name Signed-off-by: Petr "Stone" Hracek --- tests/test_django.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_django.py b/tests/test_django.py index 5370bd78..5ed077dd 100644 --- a/tests/test_django.py +++ b/tests/test_django.py @@ -48,7 +48,7 @@ class TestDancerAppExTemplate: branch_to_test = "master" expected_output = "Welcome to your Django application" template_json = self.oc_api.get_raw_url_for_json( - container="django-ex", dir="openshift/templates", filename="dancer.json" + container="django-ex", dir="openshift/templates", filename="django.json" ) assert self.oc_api.deploy_template( template=template_json, name_in_template="django-example", expected_output=expected_output,