From 35e211e33052fe302210c44a411e56e6eee88816 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 15 Nov 2021 02:11:28 +0100 Subject: [PATCH] this was for finding a testing error --- .../plugin/samples/integration/test_samples_integration.py | 2 -- 1 file changed, 2 deletions(-) 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')