From f671c30abd93e73b9f9b841cd9cc774619170c47 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/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..fca4be0bc0 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 @@ -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,