Browse Source

remove stray print(

pull/1183/head
Ross McFarland 2 years ago
parent
commit
291992db2c
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
2 changed files with 0 additions and 5 deletions
  1. +0
    -2
      octodns/processor/filter.py
  2. +0
    -3
      tests/test_octodns_record.py

+ 0
- 2
octodns/processor/filter.py View File

@ -480,8 +480,6 @@ class ExcludeRootNsChanges(BaseProcessor):
)
plan.changes.remove(change)
print(len(plan.changes))
return plan


+ 0
- 3
tests/test_octodns_record.py View File

@ -869,9 +869,7 @@ class TestRecordValidation(TestCase):
def test_records_have_rdata_methods(self):
for _type, cls in Record.registered_types().items():
print(f'{_type} {cls}')
attr = 'parse_rdata_texts'
print(f' {attr}')
method = getattr(cls, attr)
self.assertTrue(method, f'{_type}, {cls} has {attr}')
self.assertTrue(
@ -882,7 +880,6 @@ class TestRecordValidation(TestCase):
self.assertTrue(value_type, f'{_type}, {cls} has _value_type')
attr = 'parse_rdata_text'
print(f' {attr}')
method = getattr(value_type, attr)
self.assertTrue(method, f'{_type}, {cls} has {attr}')
self.assertTrue(


Loading…
Cancel
Save