SPRINT-20: fixed more broken tests due to gettablepath sig change

This commit is contained in:
Tim Chamberlain
2023-02-08 22:52:11 -06:00
parent 81f9f4e49a
commit d9a17ac99b

View File

@ -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);
}
}
}