From b4a7cf8f593047e53cec063bc7a0d8597a54441a Mon Sep 17 00:00:00 2001 From: Prashant Makwana Date: Thu, 17 Oct 2024 11:27:08 -0400 Subject: [PATCH] chore: code cleanup --- enterprise_catalog/apps/api/v2/tests/test_views.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/enterprise_catalog/apps/api/v2/tests/test_views.py b/enterprise_catalog/apps/api/v2/tests/test_views.py index d6e46599..6ad1e93a 100644 --- a/enterprise_catalog/apps/api/v2/tests/test_views.py +++ b/enterprise_catalog/apps/api/v2/tests/test_views.py @@ -217,7 +217,6 @@ def test_get_content_metadata_restricted( ['edX+course'], include_restricted=False ) - print(f"Response Restricted (should be empty): {response_restricted}") self.assertEqual(len(response_restricted), 1) self.assertIn('edX+course', [item.content_key for item in response_restricted]) @@ -226,7 +225,6 @@ def test_get_content_metadata_restricted( ['edX+course'], include_restricted=True ) - print(f"Response with Restricted Content: {response_with_restricted}") # Debugging output self.assertTrue(len(response_with_restricted) > 0) self.assertIn('edX+course', [item.content_key for item in response_with_restricted])