Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 88cd6ea

Browse files
committed
Lint fixes
1 parent 2c75a3b commit 88cd6ea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/components/views/location/LocationShareMenu-test.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,15 +261,15 @@ describe('<LocationShareMenu />', () => {
261261
const component = getComponent();
262262

263263
expect(
264-
getShareTypeOption(component, LocationShareType.Own).length
264+
getShareTypeOption(component, LocationShareType.Own).length,
265265
).toBeTruthy();
266266

267267
expect(
268-
getShareTypeOption(component, LocationShareType.Pin).length
268+
getShareTypeOption(component, LocationShareType.Pin).length,
269269
).toBeTruthy();
270270

271271
expect(
272-
getShareTypeOption(component, LocationShareType.Live).length
272+
getShareTypeOption(component, LocationShareType.Live).length,
273273
).toBeTruthy();
274274
});
275275
});
@@ -290,15 +290,15 @@ describe('<LocationShareMenu />', () => {
290290

291291
// And all 3 buttons are visible on the LocationShare dialog
292292
expect(
293-
getShareTypeOption(component, LocationShareType.Own).length
293+
getShareTypeOption(component, LocationShareType.Own).length,
294294
).toBeTruthy();
295295

296296
expect(
297-
getShareTypeOption(component, LocationShareType.Pin).length
297+
getShareTypeOption(component, LocationShareType.Pin).length,
298298
).toBeTruthy();
299299

300300
expect(
301-
getShareTypeOption(component, LocationShareType.Live).length
301+
getShareTypeOption(component, LocationShareType.Live).length,
302302
).toBeTruthy();
303303
});
304304
});

0 commit comments

Comments
 (0)