From a34f64bbe831d027cd5ce1f79e35686a2b082f5f Mon Sep 17 00:00:00 2001 From: TheTechromancer Date: Thu, 1 Feb 2024 17:59:50 -0500 Subject: [PATCH] fix speculate tests --- bbot/test/test_step_2/module_tests/test_module_speculate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bbot/test/test_step_2/module_tests/test_module_speculate.py b/bbot/test/test_step_2/module_tests/test_module_speculate.py index 0036451e4b..2dcafaddcc 100644 --- a/bbot/test/test_step_2/module_tests/test_module_speculate.py +++ b/bbot/test/test_step_2/module_tests/test_module_speculate.py @@ -30,8 +30,8 @@ class TestSpeculate_OpenPorts(ModuleTestBase): async def setup_before_prep(self, module_test): module_test.mock_dns( { - "evilcorp.com": {"A": "127.0.254.1"}, - "asdf.evilcorp.com": {"A": "127.0.254.2"}, + "evilcorp.com": {"A": ["127.0.254.1"]}, + "asdf.evilcorp.com": {"A": ["127.0.254.2"]}, } )