File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 9898 inputDetailMsg = typeof formatInput === 'string'
9999 ? 'for input "' + formatInput + '" '
100100 : '' ,
101- request ,
102101 done = assert . async ( ) ;
103102
104103 if ( $ . isArray ( expected ) ) {
136135 'Returned DataValue ' + inputDetailMsg + 'is equal to the expected '
137136 + 'DataValue.'
138137 ) ;
139-
140138 } )
141139 . fail ( function ( errorMessage ) {
142140 assert . ok (
143141 false ,
144142 'Formatting ' + inputDetailMsg + 'failed: ' + errorMessage
145143 ) ;
146- } ) ;
147-
148- done ( ) ;
144+ } )
145+ . always ( done ) ;
149146 } ) ;
150147 }
151148
Original file line number Diff line number Diff line change 124124 } )
125125 . fail ( function ( errorMessage ) {
126126 assert . ok ( false , 'parsing ' + inputDetailMsg + 'failed: ' + errorMessage ) ;
127- } ) ;
128-
129- done ( ) ;
127+ } )
128+ . always ( done ) ;
130129 } ) ;
131130 }
132131
You can’t perform that action at this time.
0 commit comments