diff options
author | xuri <xuri.me@gmail.com> | 2022-01-09 00:20:42 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-01-09 00:20:42 +0800 |
commit | 2245fccca0beb25a1bf309a1c9cbd273512f125a (patch) | |
tree | 737ced5abd6cf452662268cf1ae2b76edf8ed03c /sheetpr_test.go | |
parent | af5c4d00e81b62a3f6ff6cb34a89502400552a2d (diff) |
Typo fix, rename exported constants, dependencies modules and copyright update
Rename exported constants `NameSpaceDublinCoreMetadataIntiative` to `NameSpaceDublinCoreMetadataInitiative`
Diffstat (limited to 'sheetpr_test.go')
-rw-r--r-- | sheetpr_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sheetpr_test.go b/sheetpr_test.go index 53532e9..7c669e8 100644 --- a/sheetpr_test.go +++ b/sheetpr_test.go @@ -153,10 +153,10 @@ func TestSheetPrOptions(t *testing.T) { } } -func TestSetSheetrOptions(t *testing.T) { +func TestSetSheetPrOptions(t *testing.T) { f := NewFile() assert.NoError(t, f.SetSheetPrOptions("Sheet1", TabColor(""))) - // Test SetSheetrOptions on not exists worksheet. + // Test SetSheetPrOptions on not exists worksheet. assert.EqualError(t, f.SetSheetPrOptions("SheetN"), "sheet SheetN is not exist") } |