Fixed test_show_tasks_in_projectbuilds broken by latest changes in project build view.
Signed-off-by: Ed Bartosh <[email protected]> --- bitbake/lib/toaster/toastergui/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/toaster/toastergui/tests.py b/bitbake/lib/toaster/toastergui/tests.py index 5d15ac9..95790a2 100644 --- a/bitbake/lib/toaster/toastergui/tests.py +++ b/bitbake/lib/toaster/toastergui/tests.py @@ -564,7 +564,7 @@ class ProjectBuildsDisplayTest(TestCase): url = reverse("projectbuilds", args=(self.project1.id,)) response = self.client.get(url, follow=True) result = re.findall('^ +bash:clean$', response.content, re.MULTILINE) - self.assertEqual(len(result), 1) + self.assertEqual(len(result), 2) def test_show_tasks_in_allbuilds(self): build = Build.objects.create(**self.project1_build_success) -- 2.1.4 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
