From 3847499b17b3fd941a52b859101a5a354fc25a2b Mon Sep 17 00:00:00 2001 From: Nathan Murrow Date: Tue, 29 Apr 2014 11:41:26 -0700 Subject: [PATCH] collateral damage --- cyder/cydns/ptr/tests/test_models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cyder/cydns/ptr/tests/test_models.py b/cyder/cydns/ptr/tests/test_models.py index 150105c46..8af29e873 100644 --- a/cyder/cydns/ptr/tests/test_models.py +++ b/cyder/cydns/ptr/tests/test_models.py @@ -96,7 +96,7 @@ def test_no_domain(self): name = "me.oregondfastate.edu" self.do_generic_invalid_add(test_ip, name, '4', ValidationError) - def test_add_invalid_name_ipv6_PTR(self): + def test_add_invalid_name_ipv6_ptr(self): bad_name = "testyfoo.com" test_ip = self.osu_block + ":1" bad_name = "2134!@#$!@" @@ -109,7 +109,7 @@ def test_add_invalid_name_ipv6_PTR(self): """ Is this test redundant? """ - def test_add_invalid_name_ipv4_PTR(self): + def test_add_invalid_name_ipv4_ptr(self): bad_name = "testyfoo.com" test_ip = "128.123.123.123" bad_name = "2134!@#$!@" @@ -119,7 +119,7 @@ def test_add_invalid_name_ipv4_PTR(self): bad_name = "A" * 257 self.do_generic_invalid_add(test_ip, bad_name, '4', ValidationError) - def test_add_invalid_ip_ipv6_PTR(self): + def test_add_invalid_ip_ipv6_ptr(self): test_name = "oregonstate.edu" bad_ip = "123.123.123.123." self.do_generic_invalid_add(bad_ip, test_name, '6', ValidationError) @@ -160,7 +160,7 @@ def test_add_invalid_ip_ipv6_PTR(self): "foo.bar.oregonstate.edu", '6', ValidationError) - def test_add_invalid_ip_ipv4_PTR(self): + def test_add_invalid_ip_ipv4_ptr(self): test_name = "oregonstate.edu" bad_ip = "123.123" self.do_generic_invalid_add(bad_ip, test_name, '4', ValidationError)