From 25214a345649047a4ceecd0a34aa8a8fa9870daa Mon Sep 17 00:00:00 2001 From: Robert Richey Date: Mon, 28 Dec 2015 00:11:00 -0700 Subject: [PATCH] Update waypoint description and test Waypoint: Add Rounded Corners with a Border Radius description now explains multiple solutions are possible. Second test case updated to match the string '10px' instead of a parsed integer value greater than 8. closes #5467 --- .../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 cafeb37b85..1661251698 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 @@ -1028,8 +1028,8 @@ "title": "Add Rounded Corners with a Border Radius", "description": [ "Your cat photo currently has sharp corners. We can round out those corners with a CSS property called border-radius.", - "You can specify a border-radius with pixels. This will affect how rounded the corners are. Add this property to your thick-green-border class and set it to 10px.", - "Give your cat photo a border-radius of 10px." + "You can specify a border-radius with pixels. Give your cat photo a border-radius of 10px.", + "Note: this waypoint allows for multiple possible solutions. For example, you may add border-radius to either the .thick-green-border class or .smaller-image class." ], "tests": [ "assert($(\"img\").hasClass(\"thick-green-border\"), 'message: Your image element should have the class \"thick-green-border\".');",