We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55dc59d commit 6cc93a9Copy full SHA for 6cc93a9
tests/service/zones_test.py
@@ -193,7 +193,8 @@ def test_batch_change_records_create_validation_failed(self):
193
except DNSimpleException as dnse:
194
self.assertEqual('Validation failed', dnse.message)
195
self.assertIsInstance(dnse, DNSimpleException)
196
- self.assertEqual('The SPF record type has been discontinued', dnse.attribute_errors['creates'][0]['message'])
+ self.assertEqual('Validation failed', dnse.attribute_errors['creates'][0]['message'])
197
+ self.assertEqual({'record_type': ['unsupported']}, dnse.attribute_errors['creates'][0]['errors'])
198
199
@responses.activate
200
def test_batch_change_records_update_validation_failed(self):
0 commit comments