From ee906fc6e67103eb84fc59c3988b72b377e051fb Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Tue, 28 Apr 2020 10:46:02 +1000 Subject: [PATCH] Unit test fixes --- InvenTree/build/tests.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/InvenTree/build/tests.py b/InvenTree/build/tests.py index 42b953fe20..9b6d51c33a 100644 --- a/InvenTree/build/tests.py +++ b/InvenTree/build/tests.py @@ -141,10 +141,6 @@ class TestBuildViews(TestCase): response = self.client.get(reverse('build-index')) self.assertEqual(response.status_code, 200) - content = str(response.content) - - self.assertIn("Part Builds", content) - def test_build_detail(self): """ Test the detail view for a Build object """