Skip to content

Commit ed08df6

Browse files
fix: correct frontmatter delimiter in test_write_note_no_tags test
The test had a malformed YAML frontmatter delimiter (-- instead of ---) which was causing parsing failures. This fixes the test to use proper YAML frontmatter formatting. Co-authored-by: Paul Hernandez <phernandez@users.noreply.github.com>
1 parent ab7da9c commit ed08df6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/mcp/test_tool_write_note.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def test_write_note_no_tags(app):
6363
content = await read_note.fn("test/simple-note")
6464
assert (
6565
dedent("""
66-
--
66+
---
6767
title: Simple Note
6868
type: note
6969
permalink: test/simple-note

0 commit comments

Comments
 (0)