Skip to content

Commit

Permalink
fix test on bind provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Butler committed Jun 7, 2014
1 parent 06382fc commit 82b30c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/tests/test_bind_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 82b30c6

Please sign in to comment.