From 1472c36fed0b7b1605c9b10033b7bc9c39779f06 Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Mon, 30 Sep 2013 22:47:59 -0700 Subject: [PATCH] validate: switch site to validate Since http://vtluug.org/ seems to always be invalid HTML at inconvenient times, switch to using http://validator.w3.org/ itself, which I would hope would always be valid. --- modules/test/test_validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/test/test_validate.py b/modules/test/test_validate.py index aefc119..e1f5421 100644 --- a/modules/test/test_validate.py +++ b/modules/test/test_validate.py @@ -14,7 +14,7 @@ class TestValidate(unittest.TestCase): self.phenny = MagicMock() def test_valid(self): - url = 'http://vtluug.org/' + url = 'http://validator.w3.org/' input = Mock(group=lambda x: url) val(self.phenny, input)