From 170590b1f4a81b871a7429f522091b4c6bfae7e6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 30 2015 09:23:25 +0000 Subject: Fix unit-tests for the change in the number of commits displayed in the overview --- diff --git a/tests/test_progit_flask_ui_repo.py b/tests/test_progit_flask_ui_repo.py index 7c7d43e..dcb7027 100644 --- a/tests/test_progit_flask_ui_repo.py +++ b/tests/test_progit_flask_ui_repo.py @@ -383,7 +383,7 @@ class PagureFlaskRepotests(tests.Modeltests): self.assertTrue('

test project #3

' in output.data) self.assertTrue('Forked from' in output.data) self.assertEqual( - output.data.count(''), 10) + output.data.count(''), 3) def test_view_repo_branch(self): """ Test the view_repo_branch endpoint. """