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 }),