change language to locale
This commit is contained in:
Alexander Friedland 2019-10-18 12:13:01 +02:00 committed by GitHub
parent 6d1bf2c3e8
commit 713feb4347
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -381,7 +381,7 @@ describe('SignupVerification', () => {
$nonce: String!
$about: String
$termsAndConditionsAgreedVersion: String!
$language: String
$locale: String
) {
SignupVerification(
name: $name
@ -390,7 +390,7 @@ describe('SignupVerification', () => {
nonce: $nonce
about: $about
termsAndConditionsAgreedVersion: $termsAndConditionsAgreedVersion
language: $language
locale: $language
) {
id
termsAndConditionsAgreedVersion
@ -407,7 +407,7 @@ describe('SignupVerification', () => {
password: '123',
email: 'john@example.org',
termsAndConditionsAgreedVersion: '0.1.0',
language: 'en',
locale: 'en',
}
})