Skip to content

Commit

Permalink
fix(test): fixes state test
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Gartner committed Jan 18, 2017
1 parent fd9ca03 commit e1a4a6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/addresses.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('addresses', function () {
expect(res.address_line1).to.eql(ADDRESS.address_line1);
expect(res.address_line2).to.eql(ADDRESS.address_line2);
expect(res.address_city).to.eql(ADDRESS.address_city);
expect(res.address_state).to.eql('California');
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).to.have.property('date_created');
Expand Down

0 comments on commit e1a4a6a

Please sign in to comment.