We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bca3f4b commit 85a0273Copy full SHA for 85a0273
1 file changed
tests/test_parsers.py
@@ -20,7 +20,8 @@ def test_extract_markdown_structure_no_headers():
20
"""Testa un file markdown senza intestazioni."""
21
content = "Solo testo semplice.\nNessun titolo qui."
22
result = extract_markdown_structure(content)
23
- assert "Nessuna struttura rilevata" in result
+ # FIX: Aggiunta la parola 'Markdown' per matchare l'output aggiornato
24
+ assert "Nessuna struttura Markdown rilevata" in result
25
26
def test_extract_markdown_structure_complex():
27
"""Testa che il codice e i commenti non vengano confusi per header."""
0 commit comments