Skip to content

Commit ecd00bf

Browse files
authored
Merge branch 'develop' into 2502-shadowserver-parser-missing-documentation-on-auto_update
2 parents 95cdc4a + c5f4b01 commit ecd00bf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

intelmq/tests/bots/experts/ripe/test_expert.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
from intelmq.bots.experts.ripe.expert import RIPEExpertBot
1616

1717
EXAMPLE_INPUT = {"__type": "Event",
18-
"source.ip": "93.184.216.34", # example.com
18+
"source.ip": "93.184.215.14", # example.com
1919
"destination.ip": "193.238.157.5", # funkfeuer.at
2020
"destination.asn": 35492,
2121
"time.observation": "2015-01-01T00:00:00+00:00",
2222
}
2323
EXAMPLE_OUTPUT = {"__type": "Event",
24-
"source.ip": "93.184.216.34",
25-
"source.abuse_contact": "abuse@verizondigitalmedia.com",
24+
"source.ip": "93.184.215.14",
25+
"source.abuse_contact": "abuse@edg.io",
2626
"destination.ip": "193.238.157.5",
2727
"destination.abuse_contact": "abuse@funkfeuer.at",
2828
"destination.asn": 35492,
@@ -106,7 +106,7 @@ def test_db_ipv4_lookup(self):
106106
self.run_bot()
107107
self.assertMessageEqual(0, EXAMPLE_OUTPUT)
108108
self.assertEqual(self.cache.get('db_asn:35492'), b'["abuse@funkfeuer.at"]')
109-
self.assertEqual(self.cache.get('db_ip:93.184.216.34'), b'["abuse@verizondigitalmedia.com"]')
109+
self.assertEqual(self.cache.get('db_ip:93.184.215.14'), b'["abuse@edg.io"]')
110110
self.assertEqual(self.cache.get('db_ip:193.238.157.5'), b'["abuse@funkfeuer.at"]')
111111

112112
def test_db_ipv6_lookup(self):
@@ -196,7 +196,7 @@ def test_ripe_db_ip_errors(self, mocker):
196196
})
197197
old = self.bot.QUERY['db_ip']
198198
self.bot.QUERY['db_ip'] = 'http://localhost/{}'
199-
mocker.get('/93.184.216.34', status_code=404)
199+
mocker.get('/93.184.215.14', status_code=404)
200200
mocker.get('/193.238.157.5', status_code=404)
201201

202202
self.run_bot(prepare=False,

0 commit comments

Comments
 (0)