Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Amberg committed Jun 19, 2024
1 parent d7476bf commit 17c0b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DocxTemplater.Test/PatternMatcherTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static IEnumerable PatternMatcherArgumentParsingTest_Cases()
yield return new TestCaseData("{{Foo}:f(' whitespacequoted ', white space not quoted )}").Returns(new[] { " whitespacequoted ", "white space not quoted " });
yield return new TestCaseData("{{Foo}:f('foo', 'this is \\'quoted\\' end')}").Returns(new[] { "foo", "this is 'quoted' end" });
yield return new TestCaseData("{{Foo}:f('äöü', 'Foo \"blubb\" Test', \")}").Returns(new[] { "äöü", "Foo \"blubb\" Test", "\"" });
yield return new TestCaseData("{{Foo}:f({{ds}:img(w:14cm, h:15cm, r:90)").Returns(new[] { "w:14cm", "h:15cm", "r:90" });
yield return new TestCaseData("{{Foo}:img(w:14cm, h:15cm, r:90)}").Returns(new[] { "w:14cm", "h:15cm", "r:90" });

}

Expand Down

0 comments on commit 17c0b63

Please sign in to comment.