mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-24 07:47:32 +02:00
Tests: use a consistent naming convention for allocators
This commit is contained in:
@ -20,8 +20,8 @@ static void checkValue(const char* input, T expected) {
|
||||
|
||||
static void checkError(size_t timebombCountDown, const char* input,
|
||||
DeserializationError expected) {
|
||||
TimebombAllocator timebombAllocator(timebombCountDown);
|
||||
JsonDocument doc(&timebombAllocator);
|
||||
TimebombAllocator timebomb(timebombCountDown);
|
||||
JsonDocument doc(&timebomb);
|
||||
|
||||
DeserializationError error = deserializeMsgPack(doc, input);
|
||||
|
||||
|
Reference in New Issue
Block a user