diff --git a/pom.xml b/pom.xml index ce8b721..9585707 100644 --- a/pom.xml +++ b/pom.xml @@ -92,7 +92,7 @@ 2.12.0 2.12.0 4.12.0 - 0.8.7 + 0.8.13 1.18.38 5.11.4 5.10.1 diff --git a/src/test/java/com/contentstack/cms/stack/TaxonomyAPITest.java b/src/test/java/com/contentstack/cms/stack/TaxonomyAPITest.java index 51b5073..1676e57 100644 --- a/src/test/java/com/contentstack/cms/stack/TaxonomyAPITest.java +++ b/src/test/java/com/contentstack/cms/stack/TaxonomyAPITest.java @@ -132,7 +132,7 @@ void deleteTaxonomy(){ @Test void createTerm() throws IOException { terms.clearParams(); - JSONObject term = Utils.readJson("mockTaxonomy/createTerm.json"); + JSONObject term = Utils.readJson("mocktaxonomy/createTerm.json"); Request request = terms.create(term).request(); Assertions.assertEquals(3, request.headers().names().size()); Assertions.assertEquals("POST", request.method()); @@ -188,7 +188,7 @@ void fetchSingleTerm() throws IOException { @Test void updateTerm(){ - JSONObject Newterm = Utils.readJson("mockTaxonomy/updateTerm.json"); + JSONObject Newterm = Utils.readJson("mocktaxonomy/updateTerm.json"); Request request = terms.update(_uid,Newterm).request(); Assertions.assertEquals(2, request.headers().names().size()); Assertions.assertEquals("PUT", request.method());