summaryrefslogtreecommitdiff
path: root/stream_test.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-02-11 00:07:46 +0800
committerxuri <xuri.me@gmail.com>2021-02-11 10:54:38 +0800
commit3648335d7f45d5cf204c32345f47e8938fe86bfb (patch)
tree19d431963317f82f78b063b0a90644c3f370718c /stream_test.go
parent3783d1d01b458a56a4de6aba4a2d10605bfbc876 (diff)
This improves compatibility for worksheet relative XML path and multi rules auto filter
Diffstat (limited to 'stream_test.go')
-rw-r--r--stream_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream_test.go b/stream_test.go
index 4f1812e..ec7bd08 100644
--- a/stream_test.go
+++ b/stream_test.go
@@ -76,7 +76,7 @@ func TestStreamWriter(t *testing.T) {
file = NewFile()
streamWriter, err = file.NewStreamWriter("Sheet1")
assert.NoError(t, err)
- for rowID := 10; rowID <= 51200; rowID++ {
+ for rowID := 10; rowID <= 25600; rowID++ {
row := make([]interface{}, 50)
for colID := 0; colID < 50; colID++ {
row[colID] = rand.Intn(640000)