Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
fix(challenge): typos in first Basic CSS challenge test
Browse files Browse the repository at this point in the history
  • Loading branch information
wudifeixue authored and scissorsneedfoodtoo committed Jul 9, 2018
1 parent 93277e5 commit 5e41e74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions challenges/01-responsive-web-design/basic-css.json
Original file line number Diff line number Diff line change
Expand Up @@ -4561,15 +4561,15 @@
},
{
"text":
"<code>penguin</code> class should declare the <code>--penguin-skin</code> variable and assign it to <code>white</code>.",
"<code>penguin</code> class should declare the <code>--penguin-belly</code> variable and assign it to <code>white</code>.",
"testString":
"assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-belly\\s*?:\\s*?white\\s*?;[\\s\\S]*}/gi), '<code>penguin</code> class should declare the <code>--penguin-skin</code> variable and assign it to <code>white</code>.');"
"assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-belly\\s*?:\\s*?white\\s*?;[\\s\\S]*}/gi), '<code>penguin</code> class should declare the <code>--penguin-belly</code> variable and assign it to <code>white</code>.');"
},
{
"text":
"<code>penguin</code> class should declare the <code>--penguin-skin</code> variable and assign it to <code>orange</code>.",
"<code>penguin</code> class should declare the <code>--penguin-beak</code> variable and assign it to <code>orange</code>.",
"testString":
"assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-beak\\s*?:\\s*?orange\\s*?;[\\s\\S]*}/gi), '<code>penguin</code> class should declare the <code>--penguin-skin</code> variable and assign it to <code>orange</code>.');"
"assert(code.match(/.penguin\\s*?{[\\s\\S]*--penguin-beak\\s*?:\\s*?orange\\s*?;[\\s\\S]*}/gi), '<code>penguin</code> class should declare the <code>--penguin-beak</code> variable and assign it to <code>orange</code>.');"
}
],
"solutions": [],
Expand Down

0 comments on commit 5e41e74

Please sign in to comment.