fix: some bugfixes with fragment parser logic, ref: NOISSUE

This commit is contained in:
2024-12-03 21:32:02 +01:00
parent c1705d9f96
commit 09bbba1293
8 changed files with 25 additions and 25 deletions

View File

@@ -18,7 +18,7 @@ public class TextParserTests
private const string testInput5 = @"asdfnums(2,5,3)ght
cv strs(test) jh 4,3,2
34,54,2nums(2,8) strs(aa,ab,ba,bb)aa,bb";
[Fact]
@@ -230,7 +230,7 @@ public class TextParserTests
.EndOptions()
.Build();
var parser = new TextParser<FragmentSchemaContext>(schema);
var parser = TextParser.Create(schema);
var fragmentData = parser
.SetInputText(testInput5)
.Parse()