From 3028c34564e4f5581863e51fee75e60fc3541203 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Mon, 28 Feb 2022 18:53:03 +0000 Subject: [PATCH] Fixing test case. --- packages/server/src/tests/utilities/TestConfiguration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/tests/utilities/TestConfiguration.js b/packages/server/src/tests/utilities/TestConfiguration.js index a3544154f3..1d280fdd4b 100644 --- a/packages/server/src/tests/utilities/TestConfiguration.js +++ b/packages/server/src/tests/utilities/TestConfiguration.js @@ -247,7 +247,7 @@ class TestConfiguration { async getTable(tableId = null) { tableId = tableId || this.table._id - return this._req(null, { id: tableId }, controllers.table.find) + return this._req(null, { tableId }, controllers.table.find) } async createLinkedTable(relationshipType = null, links = ["link"]) {