Fix search.spec.ts.

This commit is contained in:
Sam Rose 2024-11-28 10:12:16 +00:00
parent f49f9280d9
commit b700f16a3a
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -3329,7 +3329,7 @@ if (descriptions.length) {
})
isSql &&
describe.only("primaryDisplay", () => {
describe("primaryDisplay", () => {
beforeAll(async () => {
let toRelateTableId = await createTable({
name: {

View File

@ -253,7 +253,7 @@ export async function save(
const oldExtraTable = oldTables[extraTable.name]
let op = oldExtraTable ? Operation.UPDATE_TABLE : Operation.CREATE_TABLE
try {
await makeTableRequest(datasource, op, extraTable)
await makeTableRequest(datasource, op, extraTable, oldExtraTable)
} catch (err: any) {
throw err
}