@@ -17,10 +17,8 @@ var PlayFabApiTests = {
1717 titleId : null , // put titleId here
1818 developerSecretKey : null , // put secretKey here
1919 titleCanUpdateSettings : "true" ,
20- userName : "put test username here" ,
21- userEmail : "put valid email for userName here" ,
22- userPassword : "put valid password for userName here" ,
23- characterName : "put valid characterName for userName here"
20+ userEmail : "put valid email associated with an existing account here" ,
21+ characterName : "put any character name here"
2422 } ,
2523 testData : {
2624 playFabId : null , // Filled during login
@@ -81,9 +79,7 @@ var PlayFabApiTests = {
8179 var titleDataValid = inputTitleData . hasOwnProperty ( "titleId" ) && inputTitleData . titleId != null
8280 && inputTitleData . hasOwnProperty ( "developerSecretKey" ) && inputTitleData . developerSecretKey != null
8381 && inputTitleData . hasOwnProperty ( "titleCanUpdateSettings" )
84- && inputTitleData . hasOwnProperty ( "userName" )
8582 && inputTitleData . hasOwnProperty ( "userEmail" )
86- && inputTitleData . hasOwnProperty ( "userPassword" )
8783 && inputTitleData . hasOwnProperty ( "characterName" ) ;
8884
8985 if ( titleDataValid )
@@ -151,7 +147,7 @@ var PlayFabApiTests = {
151147 // https://api.playfab.com/Documentation/Client/method/LoginWithEmailAddress
152148 TitleId : PlayFab . settings . titleId ,
153149 Email : PlayFabApiTests . titleData . userEmail ,
154- Password : PlayFabApiTests . titleData . userPassword + "INVALID"
150+ Password : "INVALID"
155151 } ;
156152
157153 var invalidLoginCallback = function ( result , error ) {
0 commit comments