From ac500dde70d8658fd6fe1456b74ffbb78f33ad61 Mon Sep 17 00:00:00 2001 From: Isaac Maier Date: Thu, 29 Feb 2024 16:40:09 -0500 Subject: [PATCH] Missed a field --- test/orm/base-model.spec.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/orm/base-model.spec.ts b/test/orm/base-model.spec.ts index 5f53e1d0..7f3bdd5b 100644 --- a/test/orm/base-model.spec.ts +++ b/test/orm/base-model.spec.ts @@ -6084,7 +6084,6 @@ test.group('Base Model | toObject', (group) => { }) }) - // TODO: I'm not really checking the author, so can probably just remove... test('add preloaded belongsTo relationship to toObject result', async ({ assert }) => { class Category extends BaseModel { @column({ isPrimary: true }) @@ -6104,9 +6103,6 @@ test.group('Base Model | toObject', (group) => { @column() public title: string - @column() - public userId: number - @hasOne(() => Category) public category: HasOne }