Hello!
In one of my integration tests, I am creating test accounts with the following format: string.Format("{0}_{1}", "Create_Account_Name", DateTime.Now.ToString("ddMMyyyy_hhmmss")). For example, Create_Account_Name_04042022_125948.
Until today, it has worked fine for me. But now the test fails me, getting the following error message: "Request contains an invalid argument".
I paste an example error trace, hoping you can help me, because I can't find the reason for the failure:
[13: 00: 14 WRN]Google Account not created for client
Create_Account_Name_04042022_125948[13: 01: 49 INF]Google response: Result {
"ResourceName": "",
"InvitationLink": "",
"ResourceNameAsCustomerName": null
}
"StatusCode": 3,
"Details": "Request contains an invalid argument.",
"RequestId": "LJ93dGQhwlCKsc3eIsIoBw",
"Failure": {
"errors": [{
"errorCode": {
"stringLengthError": "TOO_SHORT"
},
"message": "Too short.",
"trigger": {
"stringValue": ""
},
"location": {
"fieldPathElements": [{
"fieldName": "operations",
"index": 0
}, {
"fieldName": "create"
}, {
"fieldName": "name"
}
]
}
}
],
"requestId": "LJ93dGQhwlCKsc3eIsIoBw"
}
Thank you very much for your help.
All the best!