mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-23 07:17:30 +02:00
Removed default capacity of DynamicJsonDocument
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
REQUIRE(DeserializationError::TooDeep == expression);
|
||||
|
||||
TEST_CASE("JsonDeserializer nestingLimit") {
|
||||
DynamicJsonDocument doc;
|
||||
DynamicJsonDocument doc(4096);
|
||||
|
||||
SECTION("limit = 0") {
|
||||
doc.nestingLimit = 0;
|
||||
|
Reference in New Issue
Block a user