From c90e00bdeb4d4779490049f5b6533569a5317a9b Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Wed, 27 May 2015 16:51:41 +0100 Subject: [PATCH] Fix to issue #633 More tests added to match description --- seed_data/challenges/basic-html5-and-css.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json index 6290601fa61..054cea65ee8 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -1831,7 +1831,9 @@ "CSS allows you to control the padding of an element on all four sides with padding-top, padding-right, padding-bottom, and padding-left attributes." ], "tests": [ + "assert($('.green-box').css('padding-top') === '40px', 'Your green-box class should give the top of elements 40px of padding.')", "assert($('.green-box').css('padding-left') === '40px', 'Your green-box class should give the left of elements 40px of padding.')", + "assert($('.green-box').css('padding-right') === '20px', 'Your green-box class should give the right of elements 40px of padding.')", "assert($('.green-box').css('padding-bottom') === '20px', 'Your green-box class should give the bottom of elements 20px of padding.')" ], "challengeSeed": [