Skip to content

Commit 8a3fcfc

Browse files
Merge pull request #176 from contentstack/staging
DX | 25-08-2025 | Fix: failing taxonomy test cases DX-3461
2 parents 82d4f75 + 5585f10 commit 8a3fcfc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<retrofit-source.version>2.12.0</retrofit-source.version>
9393
<converter-gson-version>2.12.0</converter-gson-version>
9494
<okhttp.version>4.12.0</okhttp.version>
95-
<jococo-plugin.version>0.8.7</jococo-plugin.version>
95+
<jococo-plugin.version>0.8.13</jococo-plugin.version>
9696
<lombok-source.version>1.18.38</lombok-source.version>
9797
<junit-jupiter.version>5.11.4</junit-jupiter.version>
9898
<junit-jupiter-engine.version>5.10.1</junit-jupiter-engine.version>

src/test/java/com/contentstack/cms/stack/TaxonomyAPITest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ void deleteTaxonomy(){
132132
@Test
133133
void createTerm() throws IOException {
134134
terms.clearParams();
135-
JSONObject term = Utils.readJson("mockTaxonomy/createTerm.json");
135+
JSONObject term = Utils.readJson("mocktaxonomy/createTerm.json");
136136
Request request = terms.create(term).request();
137137
Assertions.assertEquals(3, request.headers().names().size());
138138
Assertions.assertEquals("POST", request.method());
@@ -188,7 +188,7 @@ void fetchSingleTerm() throws IOException {
188188

189189
@Test
190190
void updateTerm(){
191-
JSONObject Newterm = Utils.readJson("mockTaxonomy/updateTerm.json");
191+
JSONObject Newterm = Utils.readJson("mocktaxonomy/updateTerm.json");
192192
Request request = terms.update(_uid,Newterm).request();
193193
Assertions.assertEquals(2, request.headers().names().size());
194194
Assertions.assertEquals("PUT", request.method());

0 commit comments

Comments
 (0)