File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,7 @@ export default (userSessionGuid) => {
84
84
UserSessionGUID : userSessionGuid
85
85
} ;
86
86
const res = http . post ( `${ BASE_URL } /users/GetAllCharacters` , JSON . stringify ( payload ) , requestConfigWithTag ( { name : 'Get' } ) ) ;
87
- check ( res , { 'retrieved characters' : ( r ) => r . status === 200 } ) ;
88
- //Should be 0 because we just made our account
89
- check ( res . json ( ) , { 'retrieved characters' : ( r ) => r . length === 0 } ) ;
87
+ check ( res , { 'retrieved characters response successful' : ( r ) => r . status === 200 } ) ;
90
88
} ) ;
91
89
92
90
sleep ( 1 )
@@ -117,9 +115,7 @@ export default (userSessionGuid) => {
117
115
UserSessionGUID : userSessionGuid
118
116
} ;
119
117
const res = http . post ( `${ BASE_URL } /users/GetAllCharacters` , JSON . stringify ( payload ) , requestConfigWithTag ( { name : 'Get' } ) ) ;
120
- check ( res , { 'retrieved characters' : ( r ) => r . status === 200 } ) ;
121
- //Should be 1 because we just made a character
122
- check ( res . json ( ) , { 'retrieved characters' : ( r ) => r . length === 1 } ) ;
118
+ check ( res , { 'retrieved characters response successful' : ( r ) => r . status === 200 } ) ;
123
119
} ) ;
124
120
125
121
sleep ( 1 )
You can’t perform that action at this time.
0 commit comments