@@ -58,7 +58,7 @@ public void testSettingBadInput() throws Exception {
5858 try {
5959 HttpRequestForTesting .sendJsonPUTRequest (process .getProcess (), "" ,
6060 "http://localhost:3567/ee/license" ,
61- requestBody , 1000 , 1000 , null , WebserverAPI .getLatestCDIVersion (), "" );
61+ requestBody , 10000 , 10000 , null , WebserverAPI .getLatestCDIVersion (), "" );
6262 throw new Exception ("should never come here" );
6363 } catch (HttpResponseException e ) {
6464 assertTrue (e .statusCode == 400 && e .getMessage ().equals (
@@ -91,7 +91,7 @@ public void testSettingLicenseKeyWhenEEFolderDoesNotExist() throws Exception {
9191
9292 JsonObject response = HttpRequestForTesting .sendJsonPUTRequest (process .getProcess (), "" ,
9393 "http://localhost:3567/ee/license" ,
94- requestBody , 1000 , 1000 , null , WebserverAPI .getLatestCDIVersion (), "" );
94+ requestBody , 10000 , 10000 , null , WebserverAPI .getLatestCDIVersion (), "" );
9595 assertEquals (1 , response .entrySet ().size ());
9696 assertEquals ("MISSING_EE_FOLDER_ERROR" , response .get ("status" ).getAsString ());
9797
@@ -110,7 +110,7 @@ public void testSettingLicenseKeySuccessfully() throws Exception {
110110
111111 JsonObject response = HttpRequestForTesting .sendJsonPUTRequest (process .getProcess (), "" ,
112112 "http://localhost:3567/ee/license" ,
113- requestBody , 1000 , 1000 , null , WebserverAPI .getLatestCDIVersion (), "" );
113+ requestBody , 10000 , 10000 , null , WebserverAPI .getLatestCDIVersion (), "" );
114114 assertEquals (1 , response .entrySet ().size ());
115115 assertEquals ("OK" , response .get ("status" ).getAsString ());
116116
@@ -138,7 +138,7 @@ public void testCallingAPIToSyncLicenseKey() throws Exception {
138138
139139 JsonObject response = HttpRequestForTesting .sendJsonPUTRequest (process .getProcess (), "" ,
140140 "http://localhost:3567/ee/license" ,
141- new JsonObject (), 1000 , 1000 , null , WebserverAPI .getLatestCDIVersion (), "" );
141+ new JsonObject (), 10000 , 10000 , null , WebserverAPI .getLatestCDIVersion (), "" );
142142 assertEquals (1 , response .entrySet ().size ());
143143 assertEquals ("OK" , response .get ("status" ).getAsString ());
144144
@@ -163,7 +163,7 @@ public void testSettingInvalidLicenseKey() throws Exception {
163163
164164 JsonObject response = HttpRequestForTesting .sendJsonPUTRequest (process .getProcess (), "" ,
165165 "http://localhost:3567/ee/license" ,
166- requestBody , 1000 , 1000 , null , WebserverAPI .getLatestCDIVersion (), "" );
166+ requestBody , 10000 , 10000 , null , WebserverAPI .getLatestCDIVersion (), "" );
167167
168168 assertEquals (1 , response .entrySet ().size ());
169169 assertEquals ("INVALID_LICENSE_KEY_ERROR" , response .get ("status" ).getAsString ());
0 commit comments