From 51857a217d6eec867d70f948104177e728c19bf5 Mon Sep 17 00:00:00 2001 From: q523591 <523591643@qq.com> Date: Sun, 4 Nov 2018 23:14:43 +0800 Subject: New function `UnprotectSheet()` has been added --- excelize_test.go | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) mode change 100755 => 100644 excelize_test.go (limited to 'excelize_test.go') diff --git a/excelize_test.go b/excelize_test.go old mode 100755 new mode 100644 index f7a70d9..3860e17 --- a/excelize_test.go +++ b/excelize_test.go @@ -128,7 +128,7 @@ func TestOpenFile(t *testing.T) { } err = xlsx.Save() if err != nil { - t.Log(err) + t.Error(err) } // Test write file to not exist directory. err = xlsx.SaveAs("") @@ -1221,6 +1221,18 @@ func TestProtectSheet(t *testing.T) { } } +func TestUnprotectSheet(t *testing.T) { + xlsx, err := OpenFile("./test/Book1.xlsx") + if err != nil { + t.Error(err) + } + xlsx.UnprotectSheet("Sheet1") + err = xlsx.Save() + if err != nil { + t.Error(err) + } +} + func trimSliceSpace(s []string) []string { for { if len(s) > 0 && s[len(s)-1] == "" { -- cgit v1.2.1