Skip to content

Commit

Permalink
test(firestore): sync latitude error message test w/new message
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed May 12, 2021
1 parent f9909fa commit 34344dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/firestore/e2e/GeoPoint.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('firestore.GeoPoint', function () {
new firebase.firestore.GeoPoint(-100, 0);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'longitude' must be a number between -90 and 90");
error.message.should.containEql("'latitude' must be a number between -90 and 90");
return Promise.resolve();
}
});
Expand Down

1 comment on commit 34344dd

@vercel
Copy link

@vercel vercel bot commented on 34344dd May 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.