Skip to content

Commit

Permalink
Removed null char and octal null tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mizady authored and josesimoes committed Dec 17, 2024
1 parent c6c45ec commit aabcafe
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions nanoFramework.Json.Test/Converters/StringConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ public void StringConverter_ToJson_Should_ReturnValidData(string value, string e
[DataRow("Text\"1", "Text\"1")] // DoubleQuote
[DataRow("Text\n1", "Text\n1")] // Newline
[DataRow("Text\t1", "Text\t1")] // Tab
[DataRow("Text\01", "Text\01")] // OctalNull
[DataRow("Tex\0t1", "Tex\0t1")] // NullChar
[DataRow("['Text3', 1]", "['Text3', 1]")] // Array
[DataRow("{\"Text1\" : \"/Text1/\"}", "{\"Text1\" : \"/Text1/\"}")] // Json
[DataRow("ä", "ä")] // Unicode
Expand Down

0 comments on commit aabcafe

Please sign in to comment.