aboutsummaryrefslogtreecommitdiff
path: root/test/content/usecases/FindUseCase.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/content/usecases/FindUseCase.test.ts')
-rw-r--r--test/content/usecases/FindUseCase.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/content/usecases/FindUseCase.test.ts b/test/content/usecases/FindUseCase.test.ts
index ddd4cd4..3978dbc 100644
--- a/test/content/usecases/FindUseCase.test.ts
+++ b/test/content/usecases/FindUseCase.test.ts
@@ -32,7 +32,7 @@ class MockFindPresenter implements FindPresenter {
}
find(keyword: string, _backward: boolean): boolean {
- let found = this.document.includes(keyword);
+ const found = this.document.includes(keyword);
this.highlighted = found;
return found;
}