Skip to content

Commit 558a463

Browse files
committed
one result per python block
1 parent 2e27a00 commit 558a463

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/test_readme.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ def test_readme_runs():
2424
result_blocks = RESULT.findall(readme_text)
2525

2626
# Optional: keep docs and expectations in sync.
27-
assert len(code_blocks) == len(result_blocks), "Mismatch between python and result blocks in README.md"
28-
27+
assert len(code_blocks) == len(result_blocks), (
28+
"Mismatch between python and result blocks in README.md"
29+
)
2930
code = "".join(code_blocks) # merged code
3031
expected = "".join(result_blocks)
3132

0 commit comments

Comments
 (0)