diff options
author | xuri <xuri.me@gmail.com> | 2021-03-30 23:02:22 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-03-30 23:02:22 +0800 |
commit | 2af96c07149e2b79a06375bdc735c0a8c1f6646e (patch) | |
tree | 0755c027e1ef7a01ed414f7bc85b5045158c309f /styles_test.go | |
parent | 6d7bd7cd8aaeba3a0969b6f035f0a5a53209a184 (diff) |
#65 fn: N, PERCENTILE.INC and T
typo fixed
Diffstat (limited to 'styles_test.go')
-rw-r--r-- | styles_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/styles_test.go b/styles_test.go index 02a48cc..d3fde0c 100644 --- a/styles_test.go +++ b/styles_test.go @@ -259,7 +259,7 @@ func TestSetDefaultFont(t *testing.T) { func TestStylesReader(t *testing.T) { f := NewFile() - // Test read styles with unsupport charset. + // Test read styles with unsupported charset. f.Styles = nil f.XLSX["xl/styles.xml"] = MacintoshCyrillicCharset assert.EqualValues(t, new(xlsxStyleSheet), f.stylesReader()) @@ -267,7 +267,7 @@ func TestStylesReader(t *testing.T) { func TestThemeReader(t *testing.T) { f := NewFile() - // Test read theme with unsupport charset. + // Test read theme with unsupported charset. f.XLSX["xl/theme/theme1.xml"] = MacintoshCyrillicCharset assert.EqualValues(t, new(xlsxTheme), f.themeReader()) } |