File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/auth/src/core/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments