@@ -170,9 +170,7 @@ describe('ConfigValidator', () => {
170170      const  result  =  ConfigValidator . validate ( config ) ; 
171171
172172      expect ( result . valid ) . toBe ( false ) ; 
173-       expect ( result . errors ) . toContain ( 
174-         'Password cannot have any character repeated more than twice (e.g. aaa, 111)' 
175-       ) ; 
173+       expect ( result . errors ) . toContain ( 'Password cannot have any character repeated more than twice (e.g. aaa, 111)' ) ; 
176174    } ) ; 
177175
178176    test ( 'should fail when password has sequential ascending characters' ,  ( )  =>  { 
@@ -184,9 +182,7 @@ describe('ConfigValidator', () => {
184182      const  result  =  ConfigValidator . validate ( config ) ; 
185183
186184      expect ( result . valid ) . toBe ( false ) ; 
187-       expect ( result . errors ) . toContain ( 
188-         'Password cannot have more than two sequential characters (e.g. ABC, xyz, 123)' 
189-       ) ; 
185+       expect ( result . errors ) . toContain ( 'Password cannot have more than two sequential characters (e.g. ABC, xyz, 123)' ) ; 
190186    } ) ; 
191187
192188    test ( 'should fail when password has sequential numbers' ,  ( )  =>  { 
@@ -198,9 +194,7 @@ describe('ConfigValidator', () => {
198194      const  result  =  ConfigValidator . validate ( config ) ; 
199195
200196      expect ( result . valid ) . toBe ( false ) ; 
201-       expect ( result . errors ) . toContain ( 
202-         'Password cannot have more than two sequential characters (e.g. ABC, xyz, 123)' 
203-       ) ; 
197+       expect ( result . errors ) . toContain ( 'Password cannot have more than two sequential characters (e.g. ABC, xyz, 123)' ) ; 
204198    } ) ; 
205199
206200    test ( 'should pass with valid Mopar-compliant password' ,  ( )  =>  { 
@@ -330,7 +324,7 @@ describe('ConfigValidator', () => {
330324      // 1. Email invalid 
331325      // 2. Length (< 8) 
332326      // 3. No uppercase 
333-       // 4. No number    
327+       // 4. No number 
334328      // 5. No special char 
335329      // 6. PIN invalid 
336330      // 7. Debug not boolean 
0 commit comments