From 79f0ee28634e09db26a31ca22cfe47313fba4569 Mon Sep 17 00:00:00 2001 From: ppetzold Date: Sat, 14 May 2022 20:18:00 +0200 Subject: [PATCH] clean up --- src/paginate.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/paginate.spec.ts b/src/paginate.spec.ts index f806521..b9fed61 100644 --- a/src/paginate.spec.ts +++ b/src/paginate.spec.ts @@ -36,8 +36,8 @@ describe('paginate', () => { catToyRepo = connection.getRepository(CatToyEntity) catHomeRepo = connection.getRepository(CatHomeEntity) cats = await catRepo.save([ - catRepo.create({ name: 'Milo', color: 'brown', age: 6, createdAt: '2022-01-01' }), - catRepo.create({ name: 'Garfield', color: 'ginger', age: 5, createdAt: '2022-01-02' }), + catRepo.create({ name: 'Milo', color: 'brown', age: 6 }), + catRepo.create({ name: 'Garfield', color: 'ginger', age: 5 }), catRepo.create({ name: 'Shadow', color: 'black', age: 4 }), catRepo.create({ name: 'George', color: 'white', age: 3 }), catRepo.create({ name: 'Leche', color: 'white', age: null }),