Skip to content

Commit c3c8bcf

Browse files
PHPCraftdreamclaude
andcommitted
fix: use ## comments in empty-doc test (spec 0.5.0: single # is content)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent ea3ae27 commit c3c8bcf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/Ktav.Tests/BasicTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public void LoadsEmptyDocumentDefaultsToObject()
170170
Assert.That(v, Is.InstanceOf<KtavObject>());
171171
Assert.That(((KtavObject)v).Entries, Is.Empty);
172172

173-
var v2 = Ktav.Loads("# just a comment\n# another\n");
173+
var v2 = Ktav.Loads("## just a comment\n## another\n");
174174
Assert.That(v2, Is.InstanceOf<KtavObject>());
175175
Assert.That(((KtavObject)v2).Entries, Is.Empty);
176176
}

0 commit comments

Comments
 (0)