Skip to content

Commit 45aff20

Browse files
committed
Fix failing test on Mac
1 parent bc913ff commit 45aff20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specs/Specs.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Public Function Specs() As SpecSuite
258258

259259
With Specs.It("should json-encode strings")
260260
Dim Strings As Variant
261-
Strings = Array("""\" & vbCrLf & vbTab & vbBack & vbFormFeed, ChrW(128) & ChrW(32767), "#$%&{|}~")
261+
Strings = Array("""\" & vbCr & vbLf & vbTab & vbBack & vbFormFeed, ChrW(128) & ChrW(32767), "#$%&{|}~")
262262

263263
JsonString = JsonConverter.ConvertToJson(Strings)
264264
.Expect(JsonString).ToEqual "[""\""\\\r\n\t\b\f"",""\u0080\u7FFF"",""#$%&{|}~""]"

0 commit comments

Comments
 (0)