Skip to content

Commit 7f681b9

Browse files
committed
Fix tests
1 parent 477ea74 commit 7f681b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/index.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ describe('GeoIP2', () => {
4444
expect(actual.country).toBe('JP');
4545
expect(actual.eu).toBe('0');
4646
expect(actual.timezone).toBe('Asia/Tokyo');
47-
expect(actual.city).toBe('Ueda');
47+
expect(actual.city).toBe('Kawasaki');
4848
expect(actual.ll).toBeTruthy();
4949
expect(actual.metro).toBe(0);
50-
expect(actual.area).toBe(500);
50+
expect(actual.area).toBe(200);
5151
});
5252

5353
it('should match data for IPv4 - RU', () => {
@@ -70,7 +70,7 @@ describe('GeoIP2', () => {
7070
expect(actual.region).toBe('06');
7171
expect(actual.eu).toBe('1');
7272
expect(actual.timezone).toBe('Europe/Warsaw');
73-
expect(actual.city).toBe('Konopnica');
73+
expect(actual.city).toBe('Lublin');
7474
expect(actual.ll).toBeTruthy();
7575
expect(actual.metro).toBe(0);
7676
expect(actual.area).toBe(100);

0 commit comments

Comments
 (0)