diff options
Diffstat (limited to 'stream_test.go')
-rw-r--r-- | stream_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream_test.go b/stream_test.go index 391c99d..cf133f1 100644 --- a/stream_test.go +++ b/stream_test.go @@ -57,7 +57,7 @@ func TestStreamWriter(t *testing.T) { assert.NoError(t, err) assert.NoError(t, streamWriter.SetRow("A4", []interface{}{Cell{StyleID: styleID}, Cell{Formula: "SUM(A10,B10)"}})) assert.NoError(t, streamWriter.SetRow("A5", []interface{}{&Cell{StyleID: styleID, Value: "cell"}, &Cell{Formula: "SUM(A10,B10)"}})) - assert.EqualError(t, streamWriter.SetRow("A6", []interface{}{time.Now()}), ErrToExcelTime.Error()) + assert.NoError(t, streamWriter.SetRow("A6", []interface{}{time.Now()})) for rowID := 10; rowID <= 51200; rowID++ { row := make([]interface{}, 50) |