mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 03:52:16 +02:00
Removed the automatic expansion of DynamicJsonDocument
This commit is contained in:
@ -26,7 +26,7 @@ static void check(const JsonArray array, const std::string& expected) {
|
||||
}
|
||||
|
||||
TEST_CASE("serialize MsgPack array") {
|
||||
DynamicJsonDocument doc;
|
||||
DynamicJsonDocument doc(JSON_ARRAY_SIZE(65536));
|
||||
JsonArray array = doc.to<JsonArray>();
|
||||
|
||||
SECTION("empty") {
|
||||
|
Reference in New Issue
Block a user