From 4270e3a17be0f8f3663afb1197dd5691106f04ea Mon Sep 17 00:00:00 2001 From: Brian Duffy Date: Sun, 18 Feb 2018 15:11:42 +0000 Subject: [PATCH] [bugfix] updated pem validation unit tests --- awx/main/tests/unit/test_validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/unit/test_validators.py b/awx/main/tests/unit/test_validators.py index b4681f4895..a44f78b53c 100644 --- a/awx/main/tests/unit/test_validators.py +++ b/awx/main/tests/unit/test_validators.py @@ -26,7 +26,7 @@ def test_invalid_keys(): "-----BEGIN FOO-----foobar---END FOO----", "----- BEGIN FOO ----- foobar ----- FAIL FOO ----", "----- FAIL FOO ----- foobar ----- END FOO ----", - "----BEGIN FOO----foobar----END BAR----" + "----BEGIN FOO----foobar----END BAR----", ] for invalid_key in invalid_keys: with pytest.raises(ValidationError):