@@ -245,7 +245,7 @@ func TestTableGet(t *testing.T) {
245
245
if got , expected := tbl .Rows [0 ].Cells [4 ], interface {}(nil ); got != expected {
246
246
t .Errorf ("expected cell[4] to equal %#v although the type does not match the column, got %#v" , expected , got )
247
247
}
248
- if got , expected := tbl .Rows [0 ].Cells [5 ], "[1 2 3]" ; got != expected {
248
+ if got , expected := tbl .Rows [0 ].Cells [5 ], "[1,2, 3]" ; got != expected {
249
249
t .Errorf ("expected cell[5] to equal %q, got %q" , expected , got )
250
250
}
251
251
// Validate extra column for v1
@@ -343,7 +343,7 @@ func TestTableGet(t *testing.T) {
343
343
if got , expected := tbl .Rows [0 ].Cells [4 ], interface {}(nil ); got != expected {
344
344
t .Errorf ("expected cell[4] to equal %#v although the type does not match the column, got %#v" , expected , got )
345
345
}
346
- if got , expected := tbl .Rows [0 ].Cells [5 ], "[1 2 3]" ; got != expected {
346
+ if got , expected := tbl .Rows [0 ].Cells [5 ], "[1,2, 3]" ; got != expected {
347
347
t .Errorf ("expected cell[5] to equal %q, got %q" , expected , got )
348
348
}
349
349
// Validate extra column for v1
0 commit comments