diff --git a/octodns/processor/filter.py b/octodns/processor/filter.py index 3157101..848cb6f 100644 --- a/octodns/processor/filter.py +++ b/octodns/processor/filter.py @@ -480,8 +480,6 @@ class ExcludeRootNsChanges(BaseProcessor): ) plan.changes.remove(change) - print(len(plan.changes)) - return plan diff --git a/tests/test_octodns_record.py b/tests/test_octodns_record.py index 235fead..77ac729 100644 --- a/tests/test_octodns_record.py +++ b/tests/test_octodns_record.py @@ -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(