replace single quotes with double quotes in generaton tests

This commit is contained in:
Sebastian McKenzie
2014-10-31 21:21:26 +11:00
parent daced12baa
commit 0def62b918
26 changed files with 66 additions and 68 deletions

View File

@@ -2,11 +2,11 @@ var test = {
/**
* Test 2
*/
a:'1',
a:"1",
/*
* Test 1
*/
b:'2',
b:"2",
// Test 3
c:'3'
};
c:"3"
};

View File

@@ -2,11 +2,11 @@ var test = {
/**
* Test 2
*/
a: '1',
a: "1",
/*
* Test 1
*/
b: '2',
b: "2",
// Test 3
c: '3'
c: "3"
};