diff --git a/contrib/tests/test_bind_provider.py b/contrib/tests/test_bind_provider.py index f3cd913..3c2da1f 100644 --- a/contrib/tests/test_bind_provider.py +++ b/contrib/tests/test_bind_provider.py @@ -20,8 +20,8 @@ def test_first_setup(self, ugm, spcom): parser = MagicMock() bp.first_setup(parser) ugm.assert_called_once() - parser.dict_to_zone.assert_called_with({'rr': 'CNAME', 'alias': 'ns', - 'addr': 'ns1.example.com.', + parser.dict_to_zone.assert_called_with({'rr': 'A', 'alias': 'ns', + 'addr': '10.0.0.1', 'ttl': 300}) @patch('contrib.bind.provider.ZoneParser.dict_to_zone')