@@ -15,7 +15,7 @@ public class CoreRefreshTest {
1515 @ ParameterizedTest (name = "Refresh test - UrlPath: {1} - JsonPath: {2}" )
1616 @ MethodSource ({"suite.core.TestData#refreshArgs" , "suite.core.TestData#refreshArgsEncrypted" })
1717 public void testLocationRefresh_Public_Success (Core core , String urlPath , String jsonPath ) throws Exception {
18- JsonNode response = core .getWithCoreApiToken (urlPath , "5.0.1" );
18+ JsonNode response = core .getWithCoreApiToken (urlPath );
1919
2020 assertAll ("testLocationRefresh_Public_Success has version and location" ,
2121 () -> assertNotNull (response ),
@@ -27,7 +27,7 @@ public void testLocationRefresh_Public_Success(Core core, String urlPath, String
2727 @ ParameterizedTest (name = "Refresh test - UrlPath: {1} - JsonPath: {2}" )
2828 @ MethodSource ({"suite.core.TestData#refreshArgsEncrypted" })
2929 public void testLocationRefreshCloudEncryption_Public_Success (Core core , String urlPath , String jsonPath ) throws Exception {
30- JsonNode response = core .getWithCoreApiToken (urlPath , "10000.0.1" );
30+ JsonNode response = core .getWithCoreApiToken (urlPath , true );
3131
3232 assertAll ("testLocationRefresh_Public_Success has version and location" ,
3333 () -> assertNotNull (response ),
@@ -58,7 +58,7 @@ public void testCollectionRefresh_Public_Success(Core core, String urlPath, Stri
5858 @ ParameterizedTest (name = "Refresh test - UrlPath: {1} - CollectionName: {2}" )
5959 @ MethodSource ({"suite.core.TestData#collectionEndpointArgs" })
6060 public void testCollectionRefreshCloud_Encryption_Public_Success (Core core , String urlPath , String collectionName ) throws Exception {
61- JsonNode response = core .getWithCoreApiToken (urlPath , "10000.0.1" );
61+ JsonNode response = core .getWithCoreApiToken (urlPath , true );
6262
6363 assertAll ("testCollectionRefresh_Public_Success has version and collection" ,
6464 () -> assertNotNull (response , "Response should not be null" ),
0 commit comments