fixing serializeCSV to pass test

This commit is contained in:
Mike Morris
2012-07-14 20:54:06 -04:00
parent 0500672f19
commit f7e79e08fd
2 changed files with 2 additions and 21 deletions

View File

@@ -73,7 +73,7 @@ test("serializeCSV", function() {
var array = recline.Backend.CSV.serializeCSV(csv);
var exp = '"Jones, Jay",10\n' +
'"Xyz ""ABC"" O\'Brien",11:35\n' +
'"Xyz \"ABC\" O\'Brien",11:35\n' +
'"Other, AN",12:35\n';
deepEqual(array, exp);
});