diff --git a/challenges/01-responsive-web-design/applied-visual-design.json b/challenges/01-responsive-web-design/applied-visual-design.json index 4938b0df24..865912b480 100644 --- a/challenges/01-responsive-web-design/applied-visual-design.json +++ b/challenges/01-responsive-web-design/applied-visual-design.json @@ -2192,7 +2192,7 @@ "tests": [ { "text": "Set the transform property for #ball2 to scale it 1.5 times its size.", - "testString": "assert(code.match(/#ball2\\s*?{\\s*?left:\\s*?65%;\\s*?transform:\\s*?scale\\(1\\.5\\);/gi), 'Set the transform property for #ball2 to scale it 1.5 times its size.');" + "testString": "assert(code.match(/#ball2\\s*?{\\s*?left:\\s*?65%;\\s*?transform:\\s*?scale\\(1\\.5\\);\\s*?}|#ball2\\s*?{\\s*?transform:\\s*?scale\\(1\\.5\\);\\s*?left:\\s*?65%;\\s*?}/gi), 'Set the transform property for #ball2 to scale it 1.5 times its size.');" } ], "solutions": [], @@ -2220,10 +2220,10 @@ " border-radius: 50%;", " }", " #ball1 {", - " left:20%;", + " left: 20%;", " }", " #ball2 {", - " left:65%;", + " left: 65%;", " ", " }", "",