diff --git a/InvenTree/plugins/samples/integration/test_samples_integration.py b/InvenTree/plugins/samples/integration/test_samples_integration.py index cc39b730df..733e443638 100644 --- a/InvenTree/plugins/samples/integration/test_samples_integration.py +++ b/InvenTree/plugins/samples/integration/test_samples_integration.py @@ -16,6 +16,6 @@ class SampleIntegrationPluginTests(TestCase): def test_view(self): """check the function of the custom sample plugin """ - response = self.client.get('/plugin/SampleIntegrationPlugin/ho/he/') + response = self.client.get('/plugin/sample/ho/he/') self.assertEqual(response.status_code, 200) self.assertEqual(response.content, b'Hi there testuser this works')