From dc1a594ca7252f97520ff96cc2f45e3bd72526d3 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Mon, 16 Aug 2021 18:22:42 +0530 Subject: [PATCH] test: Gql Update api test correction Signed-off-by: Pranav C --- packages/nocodb/src/__tests__/graphql.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nocodb/src/__tests__/graphql.test.ts b/packages/nocodb/src/__tests__/graphql.test.ts index fd65601261..6a81042572 100644 --- a/packages/nocodb/src/__tests__/graphql.test.ts +++ b/packages/nocodb/src/__tests__/graphql.test.ts @@ -816,7 +816,7 @@ describe('{Auth, CRUD, HasMany, Belongs} Tests', () => { .expect(200, function (err, res) { if (err) done(err); const data = res.body.data.countryUpdate; - expect(data).to.be.a('number'); + expect(data).to.be.a('object'); // todo: done(); })