From d9a17ac99bbe5539ce8f1979b8d00ebfce03609f Mon Sep 17 00:00:00 2001 From: Tim Chamberlain Date: Wed, 8 Feb 2023 22:52:11 -0600 Subject: [PATCH] SPRINT-20: fixed more broken tests due to gettablepath sig change --- .../qqq/backend/core/model/metadata/QInstanceTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qqq-backend-core/src/test/java/com/kingsrook/qqq/backend/core/model/metadata/QInstanceTest.java b/qqq-backend-core/src/test/java/com/kingsrook/qqq/backend/core/model/metadata/QInstanceTest.java index 0c6a4375..5b872e85 100644 --- a/qqq-backend-core/src/test/java/com/kingsrook/qqq/backend/core/model/metadata/QInstanceTest.java +++ b/qqq-backend-core/src/test/java/com/kingsrook/qqq/backend/core/model/metadata/QInstanceTest.java @@ -48,13 +48,13 @@ class QInstanceTest extends BaseTest GetInput getInput = new GetInput(); - String tablePath = qInstance.getTablePath(getInput, TestUtils.TABLE_NAME_PERSON); + String tablePath = qInstance.getTablePath(TestUtils.TABLE_NAME_PERSON); assertEquals("/peopleApp/person", tablePath); //////////////////////////////////////////////////////////////////////////////////////// // call again (to make sure getting from memoization works - verify w/ breakpoint...) // //////////////////////////////////////////////////////////////////////////////////////// - tablePath = qInstance.getTablePath(getInput, TestUtils.TABLE_NAME_PERSON); + tablePath = qInstance.getTablePath(TestUtils.TABLE_NAME_PERSON); assertEquals("/peopleApp/person", tablePath); } @@ -70,14 +70,14 @@ class QInstanceTest extends BaseTest GetInput getInput = new GetInput(); - String tablePath = qInstance.getTablePath(getInput, "notATable"); + String tablePath = qInstance.getTablePath("notATable"); assertNull(tablePath); //////////////////////////////////////////////////////////////////////////////////////// // call again (to make sure getting from memoization works - verify w/ breakpoint...) // //////////////////////////////////////////////////////////////////////////////////////// - tablePath = qInstance.getTablePath(getInput, "notATable"); + tablePath = qInstance.getTablePath("notATable"); assertNull(tablePath); } -} \ No newline at end of file +}