This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit c6a3f10768c3a266a59181d99018bacca5465a71 Author: Greg Stein <[email protected]> AuthorDate: Fri Feb 20 19:28:51 2026 -0600 STV votestrings were switched to comma-separated --- v3/tests/check_coverage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3/tests/check_coverage.py b/v3/tests/check_coverage.py index d805275..a5800a4 100755 --- a/v3/tests/check_coverage.py +++ b/v3/tests/check_coverage.py @@ -94,8 +94,8 @@ def touch_every_line(): e.add_vote('alice', i1, 'y') e.add_vote('bob', i1, 'n') e.add_vote('carlos', i1, 'a') # use each of Y/N/A - e.add_vote('alice', i2, 'bc') - e.add_vote('bob', i2, 'ad') + e.add_vote('alice', i2, 'b,c') + e.add_vote('bob', i2, 'a,d') _ = e.has_voted_upon('alice') _ = e.is_tampered(pdb)
