diff --git a/InvenTree/plugin/samples/integration/test_samples_integration.py b/InvenTree/plugin/samples/integration/test_samples_integration.py index df73fe8f93..8e2ef41634 100644 --- a/InvenTree/plugin/samples/integration/test_samples_integration.py +++ b/InvenTree/plugin/samples/integration/test_samples_integration.py @@ -17,8 +17,6 @@ class SampleIntegrationPluginTests(TestCase): def test_view(self): """check the function of the custom sample plugin """ - print(f'current testing settings: {settings.PLUGIN_TESTING}') - self.assertTrue(settings.PLUGIN_TESTING) response = self.client.get('/plugin/sample/ho/he/') self.assertEqual(response.status_code, 200) self.assertEqual(response.content, b'Hi there testuser this works')