From ccf745f9601d71d4e38b7d9a238f3ee1a562eb75 Mon Sep 17 00:00:00 2001 From: Gonzalo Pozzo Date: Sat, 2 Jun 2018 15:54:16 -0300 Subject: [PATCH] fix(seed): Fix variable names on basic-css exercise (#17390) 3 different variable names should be changed but the exercise repeated 3 times the same one Closes #17385 --- seed/challenges/01-responsive-web-design/basic-css.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/seed/challenges/01-responsive-web-design/basic-css.json b/seed/challenges/01-responsive-web-design/basic-css.json index 041992b4f0..a36c6ef152 100644 --- a/seed/challenges/01-responsive-web-design/basic-css.json +++ b/seed/challenges/01-responsive-web-design/basic-css.json @@ -4304,12 +4304,12 @@ "testString": "assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-skin\\s*?:\\s*?gray\\s*?;[\\s\\S]*}/gi), 'penguin class should declare the --penguin-skin variable and assign it to gray.');" }, { - "text": "penguin class should declare the --penguin-skin variable and assign it to white.", - "testString": "assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-belly\\s*?:\\s*?white\\s*?;[\\s\\S]*}/gi), 'penguin class should declare the --penguin-skin variable and assign it to white.');" + "text": "penguin class should declare the --penguin-belly variable and assign it to white.", + "testString": "assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-belly\\s*?:\\s*?white\\s*?;[\\s\\S]*}/gi), 'penguin class should declare the --penguin-belly variable and assign it to white.');" }, { - "text": "penguin class should declare the --penguin-skin variable and assign it to orange.", - "testString": "assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-beak\\s*?:\\s*?orange\\s*?;[\\s\\S]*}/gi), 'penguin class should declare the --penguin-skin variable and assign it to orange.');" + "text": "penguin class should declare the --penguin-beak variable and assign it to orange.", + "testString": "assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-beak\\s*?:\\s*?orange\\s*?;[\\s\\S]*}/gi), 'penguin class should declare the --penguin-beak variable and assign it to orange.');" } ], "solutions": [],