diff options
author | Ri Xu <xuri.me@gmail.com> | 2016-12-23 17:47:25 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2016-12-23 17:47:25 +0800 |
commit | b84bfa7eab84a8e065bd5acedeae3d0ba8dc5f8b (patch) | |
tree | 2f60fefa79f398f8d413f693993c083311ee4e24 /excelize_test.go | |
parent | a08c8eb1aecea4a7d82fc70eb2aa4f886a6ed632 (diff) |
- Update maximum 31 characters allowed in sheet title;
- Fix issue XML tag `headerFooter` and `sheetPr` element self-close errors cause file corruption;
- Fix issue `Section` and `Pane` element order make file corruption in some case;
- Change sheet `rId` calculation method in `/xl/workbook.xml`, fix makes file corruption in some case;
- Compatibility improved: add `xlsxTabColor` struct and some XML element for worksheet
Diffstat (limited to 'excelize_test.go')
-rw-r--r-- | excelize_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/excelize_test.go b/excelize_test.go index 1f215df..e9ad669 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -24,7 +24,7 @@ func TestExcelize(t *testing.T) { f1.UpdateLinkedValue() f1.SetCellInt("SHEET2", "A1", 100) f1.SetCellStr("SHEET2", "C11", "Knowns") - f1.NewSheet(3, "TestSheet") + f1.NewSheet(3, "Maximum 31 characters allowed in sheet title.") f1.SetCellInt("Sheet3", "A23", 10) f1.SetCellStr("SHEET3", "b230", "10") f1.SetCellStr("SHEET10", "b230", "10") |