Fixed testing

This commit is contained in:
Vimal-Raghubir 2018-03-25 20:39:00 -04:00
parent 3ee09deb90
commit ad47b42a6c

View file

@ -79,7 +79,7 @@ TestRegister.addTests([
{ {
name: "Testing \n\n\n parsed to String", name: "Testing \n\n\n parsed to String",
input: "\n\n\n", input: "\n\n\n",
expectedOutput: "[[""],[""],[""]]", expectedOutput: "[[],[],[]]",
recipeConfig: [ recipeConfig: [
{ {
op: "CSV to String", op: "CSV to String",
@ -90,7 +90,7 @@ TestRegister.addTests([
{ {
name: "Testing 1,2,3,4,5 parsed to String", name: "Testing 1,2,3,4,5 parsed to String",
input: "1,2,3,4,5", input: "1,2,3,4,5",
expectedOutput: "[['1,'2','3','4','5']]", expectedOutput: "[[1,2,3,4,5]]",
recipeConfig: [ recipeConfig: [
{ {
op: "CSV to String", op: "CSV to String",