Skip to content

Commit 3d74d64

Browse files
committed
Fix lint
1 parent 29fd142 commit 3d74d64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/test_helpers/so_migrations.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,5 @@ const waitForTrue = async ({ predicate }: { predicate: () => Promise<boolean> })
187187
throw new Error(`Predicate never resolved after ${attempt} attempts`);
188188
};
189189

190-
const parseNdjson = (ndjson: string): SavedObject[] => ndjson.split('\n').map((l: string) => JSON.parse(l));
190+
const parseNdjson = (ndjson: string): SavedObject[] =>
191+
ndjson.split('\n').map((l: string) => JSON.parse(l));

0 commit comments

Comments
 (0)