diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.english.md
index 8cfbdace3c..8c8477506a 100644
--- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.english.md
@@ -33,8 +33,8 @@ tests:
testString: assert($('html').children('body').length == 1, 'The body
element should be a child of the html
element.');
- text: The head
element should wrap around the title
element.
testString: assert(code.match(/
head
element should wrap around the title
element.');
- - text: The body
element should wrap around both the h1
and p
elements.
- testString: assert($('body').children('h1').length == 1 && $('body').children('p').length == 1, 'The body
element should wrap around both the h1
and p
elements.');
+ - text: The body
element should wrap around both the h1
and p
.
+ testString: assert(code.match(/(.*\s*)*?<\/p>\s*?))|((
\s*?.*?\s*?<\/p>\s*?)(
body
element should wrap around both the h1
and p
elements');
```