Removed capitalization of the json source

This commit is contained in:
obscuren 2014-01-16 11:02:19 +01:00
parent d8056f7ea5
commit 79e88690b2
1 changed files with 8 additions and 6 deletions

View File

@ -8,12 +8,14 @@ import (
"testing" "testing"
) )
var testsource = `{"Inputs":{ var testsource = `
"doe": "reindeer", {
"dog": "puppy", "inputs":{
"dogglesworth": "cat" "doe": "reindeer",
}, "dog": "puppy",
"Expectation":"e378927bfc1bd4f01a2e8d9f59bd18db8a208bb493ac0b00f93ce51d4d2af76c" "dogglesworth": "cat"
},
"expectation":"e378927bfc1bd4f01a2e8d9f59bd18db8a208bb493ac0b00f93ce51d4d2af76c"
}` }`
func TestTestRunner(t *testing.T) { func TestTestRunner(t *testing.T) {