Skip to content

Commit 7215041

Browse files
committed
Fix incorrect test
1 parent 6b94440 commit 7215041

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

YarnSpinner.Tests/ErrorHandlingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void TestInvalidFunctionCall()
8181

8282
var result = Compiler.Compile(CompilationJob.CreateFromString("<input>", source));
8383

84-
result.Diagnostics.Should().Contain(d => d.Message.Contains(@"Unexpected "">>"" while reading a function call"));
84+
result.Diagnostics.Should().Contain(d => d.Message.Contains(@"Unclosed command: missing >>"));
8585
}
8686

8787
// testing that warnings are generated for empty nodes

0 commit comments

Comments
 (0)