We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e27a00 commit 558a463Copy full SHA for 558a463
1 file changed
tests/test_readme.py
@@ -24,8 +24,9 @@ def test_readme_runs():
24
result_blocks = RESULT.findall(readme_text)
25
26
# 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
-
+ assert len(code_blocks) == len(result_blocks), (
+ "Mismatch between python and result blocks in README.md"
29
+ )
30
code = "".join(code_blocks) # merged code
31
expected = "".join(result_blocks)
32
0 commit comments