Fixed bogus test

This commit is contained in:
Dylan K. Taylor 2022-01-21 19:13:36 +00:00
parent c10eda5eae
commit 94c4f58667
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -45,7 +45,7 @@ class StupidJsonDecodeTest extends TestCase{
["[\n \"a\",\"b,c,d,e\\\" \",,0,1,2, false, 0.001]", ['a', 'b,c,d,e" ', '', 0, 1, 2, false, 0.001]],
["0", 0],
["false", false],
["NULL", null],
["null", null],
['["\",,\"word","a\",,\"word2",]', ['",,"word', 'a",,"word2', '']],
['["\",,\"word","a\",,\"word2",""]', ['",,"word', 'a",,"word2', '']],
['["Hello,, PocketMine"]', ['Hello,, PocketMine']],