summaryrefslogtreecommitdiff
path: root/excelize_test.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2020-11-10 23:48:09 +0800
committerxuri <xuri.me@gmail.com>2020-11-11 01:03:56 +0800
commit2514bb16c682679485dfb5298e1a5797b97bdcd7 (patch)
treea53f0e7de3fa76b6462e2016e9a734cbd46b3a42 /excelize_test.go
parent5dd0b4aec2931079e064f1fb393b034ce4934540 (diff)
Fix #724, standardize variable naming and update unit tests
Diffstat (limited to 'excelize_test.go')
-rw-r--r--excelize_test.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/excelize_test.go b/excelize_test.go
index d838a1f..1b48872 100644
--- a/excelize_test.go
+++ b/excelize_test.go
@@ -21,14 +21,6 @@ import (
"github.com/stretchr/testify/assert"
)
-func TestCurrency(t *testing.T) {
- f, err := OpenFile(filepath.Join("test", "Book1.xlsx"))
- assert.NoError(t, err)
- // f.NewSheet("Sheet3")
- go f.SetCellValue("Sheet1", "A1", "value")
- go f.SetCellValue("Sheet2", "A1", "value")
-}
-
func TestOpenFile(t *testing.T) {
// Test update the spreadsheet file.
f, err := OpenFile(filepath.Join("test", "Book1.xlsx"))