From 7a3f478f8d659fba9cef3f1cee747a699e3bae2b Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Sun, 2 Apr 2023 16:52:13 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20misleading=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- voting/test_voting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voting/test_voting.py b/voting/test_voting.py index f2de303..aefdf62 100644 --- a/voting/test_voting.py +++ b/voting/test_voting.py @@ -9,7 +9,7 @@ class TestAtLeastOneVoter(unittest.TestCase): def test_no_voters(self): self.assertRaises(RuntimeError, Voting, title="Test", - quorum=QuorumKind.NONE, + quorum=Quorum(), voters=[], )