Renamed PrettyPrintDecorator into JsonPrettyPrint

This commit is contained in:
Benoit Blanchon
2014-08-26 10:08:54 +02:00
parent 23e61cc0f7
commit 3ae7327687
8 changed files with 28 additions and 28 deletions

View File

@ -4,7 +4,7 @@
*/
#include "CppUnitTest.h"
#include "PrettyPrintDecorator.h"
#include "JsonPrettyPrint.h"
#include "StringBuilder.h"
using namespace ArduinoJson::Internals;
@ -75,7 +75,7 @@ namespace JsonGeneratorTests
{
StringBuilder sb(buffer, sizeof(buffer));
IndentedPrint indentedPrint(sb);
PrettyPrintDecorator decorator(indentedPrint);
JsonPrettyPrint decorator(indentedPrint);
returnValue = decorator.print(input);
}