From 11c4d6277fb70c1e3b105245c054df32e508d733 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Thu, 19 Oct 2023 22:50:17 -0600 Subject: [PATCH] lint:fix --- ember-resources/type-tests/keep-latest.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ember-resources/type-tests/keep-latest.test.ts b/ember-resources/type-tests/keep-latest.test.ts index 219fa8e1e..9c6d34883 100644 --- a/ember-resources/type-tests/keep-latest.test.ts +++ b/ember-resources/type-tests/keep-latest.test.ts @@ -6,7 +6,7 @@ const foo: boolean = true; const value = keepLatest({ value: () => foo, - when: () => true + when: () => true, }); expectTypeOf(value).toMatchTypeOf();