fix: get_multicond_prompt_list preserves whitespace in split (#14)

Made-with: Cursor
This commit is contained in:
m-cahill 2026-03-08 22:07:57 -07:00 committed by GitHub
parent 12fba26e0a
commit 077e4b93f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ def test_get_multicond_prompt_list_simple():
assert len(indexes) == 1
assert len(indexes[0]) == 2
assert len(flat_list) == 2
assert "a" in flat_list and "b" in flat_list
assert flat_list[0] == "a" and flat_list[1].strip() == "b"
def test_get_multicond_prompt_list_weight():