Delete outdated unit test

This commit is contained in:
Oliver 2021-07-15 23:19:47 +10:00
parent e86e15df99
commit 28b3432afe

View File

@ -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) """