def test_new_team_issue_participant_count(self):
        app = TestApp(M.app)
        team = Team.add("test_team", "test team", "test")
        issue = TeamIssue.add("test", "test description", "test", team=team.id)
        resp = app.get(issue.url)

        assert resp.status_int == 200
        assert "Issues" in resp.body
        assert "<strong>1</strong> participant" in resp.text
        assert "<strong>1</strong> participants" not in resp.text