mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-20 14:02:24 +02:00
Remove capacity from JsonDocument
's constructor
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
#include <catch.hpp>
|
||||
|
||||
TEST_CASE("Issue1707") {
|
||||
JsonDocument doc(128);
|
||||
JsonDocument doc;
|
||||
|
||||
DeserializationError err = deserializeJson(doc, F("{\"hello\":12}"));
|
||||
REQUIRE(err == DeserializationError::Ok);
|
||||
|
Reference in New Issue
Block a user