Skip to content

Commit b9fc584

Browse files
committed
refactoring
1 parent c5b0fc1 commit b9fc584

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

e2e/index.e2e.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -848,10 +848,10 @@ describe('TypeFactoryInterface', () => {
848848
BookFactory.resetSequence();
849849

850850
// Passing input fields allows overriding the default field.
851-
const book2 = await BookFactory.buildList(2, {
851+
const books2 = await BookFactory.buildList(2, {
852852
title: 'ゆゆ式 100巻',
853853
});
854-
expect(book2).toStrictEqual([
854+
expect(books2).toStrictEqual([
855855
{
856856
id: 'Book-0',
857857
title: 'ゆゆ式 100巻',
@@ -863,7 +863,7 @@ describe('TypeFactoryInterface', () => {
863863
author: undefined,
864864
},
865865
]);
866-
expectTypeOf(book2).toEqualTypeOf<
866+
expectTypeOf(books2).toEqualTypeOf<
867867
{
868868
id: string;
869869
title: string;

0 commit comments

Comments
 (0)