From 93d6117a9da44bc973a715451a89d7f3eae07230 Mon Sep 17 00:00:00 2001 From: Jose Ignacio Palma Date: Tue, 8 Oct 2024 12:27:38 -0400 Subject: [PATCH] fix: minor --- eox_tenant/filters/test/test_pipeline.py | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/eox_tenant/filters/test/test_pipeline.py b/eox_tenant/filters/test/test_pipeline.py index 42f0300..1ad6f63 100644 --- a/eox_tenant/filters/test/test_pipeline.py +++ b/eox_tenant/filters/test/test_pipeline.py @@ -176,14 +176,6 @@ def setUp(self): self.org = "test" @override_settings( - OPEN_EDX_FILTERS_CONFIG={ - "org.openedx.learning.tenant_aware_link.render.started.v1": { - "fail_silently": False, - "pipeline": [ - "eox_tenant.filters.pipeline.OrgAwareLMSURLStudio" - ] - } - }, LMS_ROOT_URL="https://lms-base" ) @mock.patch('eox_tenant.filters.pipeline.configuration_helpers') @@ -195,9 +187,6 @@ def test_get_lms_url_based_for_org(self, configuration_helpers_mock): Args: configuration_helpers_mock (patch): mock for configuration_helpers method. - In the ddt data the following structure is being passed: - [organizations, render] - Expected result: - The url return is equal to expected. - The org return is equal to expected. @@ -229,14 +218,6 @@ def setUp(self): self.org = "test" @override_settings( - OPEN_EDX_FILTERS_CONFIG={ - "org.openedx.learning.tenant_aware_link.render.started.v1": { - "fail_silently": False, - "pipeline": [ - "eox_tenant.filters.pipeline.OrgAwareCourseAboutPageURL" - ] - } - }, LMS_ROOT_URL="https://lms-base" ) @mock.patch('eox_tenant.filters.pipeline.configuration_helpers') @@ -248,9 +229,6 @@ def test_get_course_about_url_based_for_org(self, configuration_helpers_mock): Args: configuration_helpers_mock (patch): mock for configuration_helpers method. - In the ddt data the following structure is being passed: - [organizations, render] - Expected result: - The url return is equal to expected. - The org return is equal to expected.