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 40f5fd9 commit f217e66Copy full SHA for f217e66
src/classes/RESTControllerTest.cls
@@ -160,10 +160,10 @@ public with sharing class RESTControllerTest {
160
161
@IsTest
162
public static void TestRequestEnvelope() {
163
- String jsonRequest = '{\"data\": {
164
- \"firstName\": \"Von\",
165
- \"lastName\": \"Miller\"
166
- }}';
+ String jsonRequest = '{\"data\": { '
+ + '\"firstName\": \"Von\",'
+ + '\"lastName\": \"Miller\"'
+ + '}}';
167
TestRESTController.RequestEnvelope envelope = new TestRESTController.RequestEnvelope(jsonRequest);
168
169
System.assertNotEquals(null, envelope.data);
0 commit comments