mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-19 05:22:24 +02:00
Remove capacity from JsonDocument
's constructor
This commit is contained in:
@ -18,7 +18,7 @@ TEST_CASE("Truncated JSON input") {
|
||||
"{", "{a", "{a:", "{a:1", "{a:1,", "{a:1,"};
|
||||
const size_t testCount = sizeof(testCases) / sizeof(testCases[0]);
|
||||
|
||||
JsonDocument doc(4096);
|
||||
JsonDocument doc;
|
||||
|
||||
for (size_t i = 0; i < testCount; i++) {
|
||||
const char* input = testCases[i];
|
||||
|
Reference in New Issue
Block a user