From a901186a74b8b7662f66945c295a3081cd1b065a Mon Sep 17 00:00:00 2001 From: Mark Moser Date: Fri, 29 Jul 2016 13:23:25 -0500 Subject: [PATCH] css selectors are not symbols..... --- test/fixtures/answers.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/fixtures/answers.yml b/test/fixtures/answers.yml index 4297a9b..f617658 100644 --- a/test/fixtures/answers.yml +++ b/test/fixtures/answers.yml @@ -39,7 +39,7 @@ dawn2: dawn3: candidate: dawn question: fed3 - answer: {html: "

I'm a little tealpot

", css: 'h1: {color: teal;}', js: ''} + answer: {html: "

I'm a little tealpot

", css: 'h1 {color: teal;}', js: ''} saved: 0 submitted: true created_at: <%= DateTime.now() - 38.hours - 50.minutes %> @@ -75,7 +75,7 @@ dawn6: dawn7: candidate: dawn question: fed7 - answer: {html: '

This means jQuery needs to be available in live-coder!

', css: 'strong: {font-size: 1.6em;} green: {color: green;}', js: '$("strong").addClass("green");'} + answer: {html: '

This means jQuery needs to be available in live-coder!

', css: "strong {font-size: 1.6em;}\n .green {color: green;}", js: '$("strong").addClass("green");'} saved: 0 submitted: true created_at: <%= DateTime.now() - 38.hours - 34.minutes %> @@ -129,7 +129,7 @@ richard2: richard3: candidate: richard question: fed3 - answer: {html: '

Salmon

', css: 'h1: {color: salmon;}', js: ''} + answer: {html: '

Salmon

', css: 'h1 {color: salmon;}', js: ''} saved: 0 submitted: true created_at: <%= DateTime.now() - 36.hours - 26.minutes %> @@ -165,7 +165,7 @@ richard6: richard7: candidate: richard question: fed7 - answer: {html: '

This means jQuery needs to be available in live-coder!

', css: 'strong: {font-size: 1.6em;} green: {color: green;}', js: '$("strong").addClass("green");'} + answer: {html: '

This means jQuery needs to be available in live-coder!

', css: "strong {font-size: 1.6em;} .green {color: green;}", js: '$("strong").addClass("green");'} saved: 0 submitted: true created_at: <%= DateTime.now() - 36.hours - 34.minutes %>