Skip to content

Commit

Permalink
fix(auto-verify): update tests to manage auto-verify
Browse files Browse the repository at this point in the history
  • Loading branch information
Kienan Adams committed Aug 26, 2017
1 parent d369a7e commit 107eeae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/addresses.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
'use strict';

var ADDRESS = {
name: 'Harry Zhang',
name: 'HARRY ZHANG',
email: 'harry@lob.com',
phone: '5555555555',
address_line1: '123 Test Street',
address_line2: 'Unit 123',
address_city: 'San Francisco',
address_line1: '185 BERRY ST STE 6100',
address_line2: '',
address_city: 'SAN FRANCISCO',
address_state: 'CA',
address_zip: '94158',
address_zip: '94107-1741',
address_country: 'US'
};

Expand Down Expand Up @@ -51,7 +51,7 @@ describe('addresses', function () {
expect(res.address_city).to.eql(ADDRESS.address_city);
expect(res.address_state).to.eql(ADDRESS.address_state);
expect(res.address_zip).to.eql(ADDRESS.address_zip);
expect(res.address_country).to.eql('United States');
expect(res.address_country).to.eql('UNITED STATES');
expect(res).to.have.property('date_created');
expect(res).to.have.property('date_modified');
expect(res).to.have.property('object');
Expand Down

0 comments on commit 107eeae

Please sign in to comment.