diff options
author | xuri <xuri.me@gmail.com> | 2020-03-31 00:02:00 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-03-31 00:02:00 +0800 |
commit | 3ce4b91be96589847823b6c1b6c123ba7880310f (patch) | |
tree | 1df0f8183d528cccafa677990b2f7624475837ae /excelize_test.go | |
parent | 3f89c6e9799c9c82af1305f080416c53d19e64c1 (diff) |
Resolve #345, fix missing comments by GetComments
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 815a08d..e8d3a30 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -934,7 +934,7 @@ func TestCopySheetError(t *testing.T) { func TestGetSheetComments(t *testing.T) { f := NewFile() - assert.Equal(t, "", f.getSheetComments(0)) + assert.Equal(t, "", f.getSheetComments("sheet0")) } func TestSetActiveSheet(t *testing.T) { |