Skip to content

Commit 337e317

Browse files
author
Frédéric Collonval
committed
Fix linter error
1 parent 2f2f095 commit 337e317

File tree

1 file changed

+3
-3
lines changed
  • {{cookiecutter.github_project_name}}/src/__tests__

1 file changed

+3
-3
lines changed

{{cookiecutter.github_project_name}}/src/__tests__/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ export function createTestModel<T extends widgets.WidgetModel>(
107107
constructor: Constructor<T>,
108108
attributes?: any
109109
): T {
110-
let id = widgets.uuid();
111-
let widget_manager = new DummyManager();
112-
let modelOptions = {
110+
const id = widgets.uuid();
111+
const widget_manager = new DummyManager();
112+
const modelOptions = {
113113
widget_manager: widget_manager,
114114
model_id: id,
115115
};

0 commit comments

Comments
 (0)