From 28b3432afe8c9a95c41c22fe06f3adf32634d401 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 15 Jul 2021 23:19:47 +1000 Subject: [PATCH] Delete outdated unit test --- InvenTree/build/tests.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/InvenTree/build/tests.py b/InvenTree/build/tests.py index 9c5134cc66..b5e5406f69 100644 --- a/InvenTree/build/tests.py +++ b/InvenTree/build/tests.py @@ -252,19 +252,6 @@ class TestBuildViews(TestCase): self.assertIn(build.title, content) - def test_build_allocate(self): - """ Test the part allocation view for a Build """ - - url = reverse('build-allocate', args=(1,)) - - # Get the page normally - response = self.client.get(url) - self.assertEqual(response.status_code, 200) - - # Get the page in editing mode - response = self.client.get(url, {'edit': 1}) - self.assertEqual(response.status_code, 200) - def test_build_item_create(self): """ Test the BuildItem creation view (ajax form) """