From f4d29b9136882ce26eb49333abd04f88d06940f2 Mon Sep 17 00:00:00 2001 From: Elliot Hesp Date: Sat, 6 Jan 2018 15:17:59 +0000 Subject: [PATCH] [auth] Fix incorrect languageCode test --- tests/src/tests/auth/authTests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/tests/auth/authTests.js b/tests/src/tests/auth/authTests.js index 31d70d72..5848db26 100644 --- a/tests/src/tests/auth/authTests.js +++ b/tests/src/tests/auth/authTests.js @@ -363,7 +363,7 @@ function authTests({ tryCatch, describe, it, firebase }) { throw new Error('Expected language code to be "en".'); } firebase.native.auth().languageCode = 'fr'; - if (firebase.native.auth().languageCode !== 'en') { + if (firebase.native.auth().languageCode !== 'fr') { throw new Error('Expected language code to be "fr".'); } firebase.native.auth().languageCode = 'en';