diff --git a/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs b/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs index 236bfeb..506dca0 100644 --- a/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs +++ b/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs @@ -27,6 +27,7 @@ public void TestEmptyString(string input) [InlineData("😊😊", "\"😊😊\"")] [InlineData("hello\nworld", "'hello\nworld'")] [InlineData("hello\nworld", "\"hello\nworld\"")] + [InlineData("hello\\nworld", "'hello\\nworld'")] [InlineData("hello\nworld", "\"hello\\nworld\"")] public void TestBasicString(string expected, string input) {