Skip to content

Commit 12c8239

Browse files
committed
Lint
1 parent dd07784 commit 12c8239

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/auth/src/core/util/browser.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ describe('core/util/browser', () => {
102102
context('_isIOS', () => {
103103
it('should recognize iPhone', () => {
104104
const userAgent =
105-
'Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234'
105+
'Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234';
106106
expect(_isIOS(userAgent)).to.be.true;
107107
});
108108

109109
it('should recognize iPad without iPad string', () => {
110110
const userAgent =
111-
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234'
111+
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234';
112112
expect(_isIOS(userAgent)).to.be.true;
113113
});
114114

0 commit comments

Comments
 (0)