Skip to content

Commit 85a0273

Browse files
committed
easy fix
1 parent bca3f4b commit 85a0273

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_parsers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ def test_extract_markdown_structure_no_headers():
2020
"""Testa un file markdown senza intestazioni."""
2121
content = "Solo testo semplice.\nNessun titolo qui."
2222
result = extract_markdown_structure(content)
23-
assert "Nessuna struttura rilevata" in result
23+
# FIX: Aggiunta la parola 'Markdown' per matchare l'output aggiornato
24+
assert "Nessuna struttura Markdown rilevata" in result
2425

2526
def test_extract_markdown_structure_complex():
2627
"""Testa che il codice e i commenti non vengano confusi per header."""

0 commit comments

Comments
 (0)