StupidJsonDecodeTest: add failing test case for #3113

This commit is contained in:
Dylan T 2019-09-16 15:53:00 +01:00 committed by GitHub
parent a19143cae7
commit d724374d1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,8 @@ class StupidJsonDecodeTest extends TestCase{
["false", false],
["NULL", null],
['["\",,\"word","a\",,\"word2",]', ['",,"word', 'a",,"word2', '']],
['["\",,\"word","a\",,\"word2",""]', ['",,"word', 'a",,"word2', '']]
['["\",,\"word","a\",,\"word2",""]', ['",,"word', 'a",,"word2', '']],
['["Hello,, PocketMine"]', ['Hello,, PocketMine']]
];
}