From 10c3ffae536c37a97a78d70580d381f8492e1586 Mon Sep 17 00:00:00 2001 From: Venkataraman Valady Ganesan Date: Sun, 9 Oct 2016 19:36:20 -0700 Subject: [PATCH] margins code challengeverification order to TopRightBottomLeft --- .../01-front-end-development-certification/html5-and-css.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json index deecceb88c..b46c6bbdf6 100644 --- a/seed/challenges/01-front-end-development-certification/html5-and-css.json +++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json @@ -3845,9 +3845,9 @@ ], "tests": [ "assert($(\".green-box\").css(\"padding-top\") === \"40px\", 'message: Your green-box class should give the top of the elements 40px of padding.');", - "assert($(\".green-box\").css(\"padding-left\") === \"40px\", 'message: Your green-box class should give the left of the elements 40px of padding.');", "assert($(\".green-box\").css(\"padding-right\") === \"20px\", 'message: Your green-box class should give the right of the elements 20px of padding.');", - "assert($(\".green-box\").css(\"padding-bottom\") === \"20px\", 'message: Your green-box class should give the bottom of the elements 20px of padding.');" + "assert($(\".green-box\").css(\"padding-bottom\") === \"20px\", 'message: Your green-box class should give the bottom of the elements 20px of padding.');", + "assert($(\".green-box\").css(\"padding-left\") === \"40px\", 'message: Your green-box class should give the left of the elements 40px of padding.');" ], "type": "waypoint", "challengeType": 0,