diff --git a/visualizer/descriptors/faq.py b/visualizer/descriptors/faq.py index 08a4310a..7b5bc4f9 100644 --- a/visualizer/descriptors/faq.py +++ b/visualizer/descriptors/faq.py @@ -171,7 +171,7 @@ def get_answer(self, roundNum): rnd = self.summary.rounds[roundNum] result = "The tiebreak method is up to the election administrator. "\ - "RCVis does not know what method was chosen to break this tie, only that " + "The outcome of the tiebreak is that " parts = [] diff --git a/visualizer/tests/testFaq.py b/visualizer/tests/testFaq.py index 509f334d..b72a1174 100644 --- a/visualizer/tests/testFaq.py +++ b/visualizer/tests/testFaq.py @@ -297,7 +297,7 @@ def test_tiebreak(self): self.assertEqual( faq.HowWereTiesBroken(*args).get_answer(1), "The tiebreak method is up to the election administrator. " - "RCVis does not know what method was chosen to break this tie, " - "only that Yinka Dare was eliminated and George Gervin was was elected.") + "The outcome of the tiebreak is that Yinka Dare was eliminated " + "and George Gervin was was elected.") self.assertTrue(faq.WhyEliminated(*args).get_answer(1).startswith("There was a tie")) self.assertTrue(faq.WhySingleWinner(*args).get_answer(1).startswith("There was a tie"))