File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ export default function () {
204
204
expectStatusFor ( r ) . to . equal ( 400 ) ;
205
205
expect ( r , 'response' ) . to . have . validJsonBody ( ) ;
206
206
expect ( r . json ( ) , 'response json' ) . to . have . property ( "errors" ) ;
207
- expect ( r . json ( ) . errors , 'errors' ) . to . have . property ( "Process " ) . with . lengthOf ( 1 ) ;
207
+ expect ( r . json ( ) . errors , 'errors' ) . to . have . property ( "process " ) . with . lengthOf ( 1 ) ;
208
208
} )
209
209
210
210
describe ( 'List with process filter' , ( ) => {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export default function () {
8
8
expectStatusFor ( r ) . to . equal ( 400 ) ;
9
9
expect ( r , 'response' ) . to . have . validJsonBody ( ) ;
10
10
expect ( r . json ( ) , 'reponse' ) . to . have . property ( 'errors' ) ;
11
- expect ( r . json ( ) . errors , 'error' ) . to . have . property ( 'GuiActions ' ) ;
11
+ expect ( r . json ( ) . errors , 'error' ) . to . have . property ( 'guiActions ' ) ;
12
12
} ;
13
13
14
14
let createDialogWithGuiActions = function ( numActions , actionType ) {
@@ -23,8 +23,6 @@ export default function () {
23
23
24
24
return dialog ;
25
25
} ;
26
-
27
-
28
26
29
27
describe ( 'Attempt dialog create with two primary actions' , ( ) => {
30
28
expectGuiActionErrorResponseForDialog ( createDialogWithGuiActions ( 2 , "primary" ) ) ;
You can’t perform that action at this time.
0 commit comments