Skip to content

Commit 50a63be

Browse files
committed
Fix test failure cause of change in data
1 parent 1cad347 commit 50a63be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/io/ipinfo/IPinfoTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public void testGetBatchIps() {
212212
() -> assertFalse(res3.getPrivacy().getVpn(), "VPN mismatch"),
213213
() -> assertFalse(res3.getPrivacy().getTor(), "Tor mismatch"),
214214
() -> assertFalse(res3.getPrivacy().getRelay(), "relay mismatch"),
215-
() -> assertTrue(res3.getPrivacy().getHosting(), "hosting mismatch"),
215+
() -> assertFalse(res3.getPrivacy().getHosting(), "hosting mismatch"),
216216
() -> assertEquals("", res3.getPrivacy().getService(), "service mismatch"),
217217
() -> assertEquals(5, res3.getDomains().getDomains().size(), "domains size mismatch")
218218
);

0 commit comments

Comments
 (0)