We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5663b6b commit 68d6eb6Copy full SHA for 68d6eb6
examples/test/Test.ino
@@ -57,8 +57,8 @@ void objectDataTypesTest() {
57
ParseObjectCreate create;
58
create.setClassName("TestObject");
59
create.addGeoPoint("location", 40.0, -30.0);
60
- create.addJSONValue("dateField", "{ \"__type\": \"Date\", \"iso\": \"2011-08-21T18:02:52.249Z\" }");
61
- create.addJSONValue("arrayField", "[ 30, \"s\" ]");
+ create.addJSONValue("dateField", "{\"__type\":\"Date\",\"iso\":\"2011-08-21T18:02:52.249Z\"}");
+ create.addJSONValue("arrayField", "[30,\"s\"]");
62
create.addJSONValue("emptyField", "null");
63
ParseResponse createResponse = create.send();
64
assert(createResponse.getErrorCode() == 0);
0 commit comments