From e383a947076b5c66443e509119a74945549b749c Mon Sep 17 00:00:00 2001 From: harshithad0703 Date: Mon, 9 Oct 2023 19:10:48 +0530 Subject: [PATCH] fix: :bug: taxonomy bug fix in query unit test case --- test/unit/taxonomy-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/taxonomy-test.js b/test/unit/taxonomy-test.js index b9435185..b5f09386 100644 --- a/test/unit/taxonomy-test.js +++ b/test/unit/taxonomy-test.js @@ -44,7 +44,7 @@ describe('Contentstack Taxonomy test', () => { it('Taxonomies query test', done => { var mock = new MockAdapter(Axios) mock.onGet('/taxonomies').reply(200, { - taxonomy: [ + taxonomies: [ taxonomyMock ] })