From 6c2ec6a58c30fe22e38afe0af314dc1fc617cb44 Mon Sep 17 00:00:00 2001 From: Ilya Glotov Date: Thu, 23 Apr 2020 13:16:30 +0300 Subject: [PATCH] Fix slow search tests --- tests/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.py b/tests/tests.py index 8c391f4..71643af 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -43,6 +43,6 @@ class TestPyMISPWarningLists(unittest.TestCase): results = self.warninglists.search('2001:DB8::34:1') self.assertEqual(results[0].name, 'List of RFC 3849 CIDR blocks') results = self.warninglists.search('1e100.net') - self.assertEqual(results[0].name, 'Top 1,000,000 most-used sites from Tranco') + self.assertEqual(results[0].name, 'List of known google domains') results = self.warninglists.search('something.files.1drv.com') self.assertEqual(results[0].name, 'Top 1,000,000 most-used sites from Tranco')