From a4ec8205a3320f39b430a33b6d3b133ff7e45ee8 Mon Sep 17 00:00:00 2001 From: SherylHohman Date: Mon, 10 Oct 2016 01:44:58 -0700 Subject: [PATCH] Re-order Margin tests as Top-Right-Bottom-Left --- .../01-front-end-development-certification/html5-and-css.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/01-front-end-development-certification/html5-and-css.json b/challenges/01-front-end-development-certification/html5-and-css.json index deecceb88c..fca4be0bc0 100644 --- a/challenges/01-front-end-development-certification/html5-and-css.json +++ b/challenges/01-front-end-development-certification/html5-and-css.json @@ -3934,9 +3934,9 @@ ], "tests": [ "assert($(\".green-box\").css(\"margin-top\") === \"40px\", 'message: Your green-box class should give the top of elements 40px of margin.');", - "assert($(\".green-box\").css(\"margin-left\") === \"40px\", 'message: Your green-box class should give the left of elements 40px of margin.');", "assert($(\".green-box\").css(\"margin-right\") === \"20px\", 'message: Your green-box class should give the right of elements 20px of margin.');", - "assert($(\".green-box\").css(\"margin-bottom\") === \"20px\", 'message: Your green-box class should give the bottom of elements 20px of margin.');" + "assert($(\".green-box\").css(\"margin-bottom\") === \"20px\", 'message: Your green-box class should give the bottom of elements 20px of margin.');", + "assert($(\".green-box\").css(\"margin-left\") === \"40px\", 'message: Your green-box class should give the left of elements 40px of margin.');" ], "type": "waypoint", "challengeType": 0,