Skip to content

Commit d8c5c3b

Browse files
committed
Update submodule
1 parent 6385cb0 commit d8c5c3b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

reader_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func TestReader(t *testing.T) {
6565
)
6666

6767
assert.Equal(t, uint(2635167), record.Country.GeoNameID)
68-
assert.True(t, record.Country.IsInEuropeanUnion)
68+
assert.False(t, record.Country.IsInEuropeanUnion)
6969
assert.Equal(t, "GB", record.Country.IsoCode)
7070
assert.Equal(t,
7171
map[string]string{
@@ -180,7 +180,7 @@ func TestCountry(t *testing.T) {
180180
record, err := reader.Country(net.ParseIP("81.2.69.160"))
181181
assert.Nil(t, err)
182182

183-
assert.True(t, record.Country.IsInEuropeanUnion)
183+
assert.False(t, record.Country.IsInEuropeanUnion)
184184
assert.False(t, record.RegisteredCountry.IsInEuropeanUnion)
185185
assert.False(t, record.RepresentedCountry.IsInEuropeanUnion)
186186
}

test-data

Submodule test-data updated 46 files

0 commit comments

Comments
 (0)