From 1ed80bd8d5ba0c7bf1f92d373e18a4374127fe10 Mon Sep 17 00:00:00 2001 From: Paolo Lucano Date: Mon, 28 Oct 2019 15:17:26 +0000 Subject: [PATCH] fixed issues 07 test --- exercises/07-Create-a-Basic-HTML/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/07-Create-a-Basic-HTML/test.py b/exercises/07-Create-a-Basic-HTML/test.py index c8451a39..8f97ac1c 100644 --- a/exercises/07-Create-a-Basic-HTML/test.py +++ b/exercises/07-Create-a-Basic-HTML/test.py @@ -31,5 +31,5 @@ def test_use_my_var1(): my_print = [s for s in content if "html_document =" in s] my_htmlDocumentIndex = content.index(my_print[0]) # print(my_print_index) - regex = r"html_document(\s*)=(\s*)e(\s*)\+(\s*)c(\s*)\+(\s*)g(\s*)\+(\s*)a(\s*)\+(\s*)f(\s*)\+(\s*)h(\s*)\+(\s*)d(\s*)\+(\s*) b" + regex = r"html_document(\s*)=(\s*)e(\s*)\+(\s*)c(\s*)\+(\s*)g(\s*)\+(\s*)a(\s*)\+(\s*)f(\s*)\+(\s*)h(\s*)\+(\s*)d(\s*)\+(\s*)b" assert re.match(regex, content[my_htmlDocumentIndex])