From df429fe178f1d7920feb2616996eda6db25eb60b Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 23 Mar 2019 22:49:22 -0400 Subject: [PATCH] country is now upper --- spec/common/importers/onepassword1PifImporter.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/common/importers/onepassword1PifImporter.spec.ts b/spec/common/importers/onepassword1PifImporter.spec.ts index 1a2d5d7a6f..6584ac3769 100644 --- a/spec/common/importers/onepassword1PifImporter.spec.ts +++ b/spec/common/importers/onepassword1PifImporter.spec.ts @@ -384,7 +384,7 @@ describe('1Password 1Pif Importer', () => { expect(identity.lastName).toEqual('Fritzenberger'); expect(identity.company).toEqual('Web Inc.'); expect(identity.address1).toEqual('Mainstreet 1'); - expect(identity.country).toEqual('de'); + expect(identity.country).toEqual('DE'); expect(identity.city).toEqual('Berlin'); expect(identity.postalCode).toEqual('223344'); expect(identity.phone).toEqual('+49 001 222 333 44');