mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
Merged JsonArrayIterator and JsonObjectIterator into a one template class
This commit is contained in:
@@ -17,8 +17,8 @@ TEST(JsonObject_Iterator_Test, SimpleTest) {
|
||||
object["ab"] = 12;
|
||||
object["cd"] = 34;
|
||||
|
||||
JsonObjectIterator it = object.begin();
|
||||
JsonObjectIterator end = object.end();
|
||||
JsonObject::iterator it = object.begin();
|
||||
JsonObject::iterator end = object.end();
|
||||
|
||||
EXPECT_NE(end, it);
|
||||
EXPECT_STREQ("ab", it->key());
|
||||
|
||||
Reference in New Issue
Block a user