Skip to content

Commit

Permalink
fix: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
jignaciopm committed Oct 8, 2024
1 parent 17d7f9f commit 93d6117
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions eox_tenant/filters/test/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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.
Expand Down Expand Up @@ -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')
Expand All @@ -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.
Expand Down

0 comments on commit 93d6117

Please sign in to comment.