Skip to content

Commit 197146a

Browse files
Fix name shadowing
1 parent 092b781 commit 197146a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integration_test/ipregistry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ describe('batchLookup', () => {
166166
const ipInfoList = response2.data;
167167

168168
for (let i = 0; i < ipInfoList.length; i++) {
169-
const ipInfo = ipInfoList[i] as IpInfo;
170-
expect(ipInfo.ip).equal(ips[i]);
169+
const ipData = ipInfoList[i] as IpInfo;
170+
expect(ipData.ip).equal(ips[i]);
171171
}
172172

173173
expect((ipInfoList[0] as IpInfo).time_zone.current_time).equal('cachedTime');

0 commit comments

Comments
 (0)