Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sefinek committed Aug 24, 2024
1 parent e178f0c commit 77f6171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('GeoIP Wrapper Module', () => {
expect(result.validationErr).toBe(false);
expect(result.ip).toBe(ipv6Address);
expect(result.data).toBeDefined();
expect(result.data.country).toBe('PH');
expect(result.data.country).toBe('PL');
});

test('Should reject with an error for a malformed IP address', async () => {
Expand Down

0 comments on commit 77f6171

Please sign in to comment.