From a87757b35cc796d0bf18a5dc8c3acee88bc73409 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Wed, 10 Jun 2015 23:06:44 -0700 Subject: [PATCH] fix #888 --- seed_data/challenges/basic-html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json index a8f99f266c..ca0f358a27 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -201,7 +201,7 @@ ], "tests": [ "assert(($('h1').length === 0), 'Comment out your h1 element so that it is not visible on your page.')", - "assert(($('h2').length > 0), 'Leave your h2 element uncommented so that is not visible on your page.')", + "assert(($('h2').length > 0), 'Leave your h2 element uncommented so that it is visible on your page.')", "assert(($('p').length === 0), 'Comment out your p element so that it is not visible on your page.')", "assert(editor.match(/-->/g).length > 1, 'Be sure to close each of your comments with -->.')" ],