From 42bd8f5a419c30fa74045d0bebd74929ce2b7027 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Mon, 1 Feb 2021 22:37:57 +0000 Subject: [PATCH] Enable two tests that were not running because of typos in the test name. Thanks to Jennifer for spotting the typos. - Legacy-Id: 18819 --- ietf/submit/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/submit/tests.py b/ietf/submit/tests.py index 8e64a8f9e..cba53cdf0 100644 --- a/ietf/submit/tests.py +++ b/ietf/submit/tests.py @@ -373,10 +373,10 @@ class SubmitTests(TestCase): def test_submit_new_wg_txt(self): self.submit_new_wg(["txt"]) - def text_submit_new_wg_xml(self): + def test_submit_new_wg_xml(self): self.submit_new_wg(["xml"]) - def text_submit_new_wg_txt_xml(self): + def test_submit_new_wg_txt_xml(self): self.submit_new_wg(["txt", "xml"]) def test_submit_new_wg_as_author(self):