diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-03-28 11:48:09 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-03-28 11:48:09 +0800 |
commit | bee487c445768b8afd15bbfa7caa4d8427e4c880 (patch) | |
tree | 4b31fc11a593ad1a02e7f0726aa1d6fe6895fa97 /excelize_test.go | |
parent | b6254209fe56c84a9ac99805ce3dd877a494e134 (diff) |
Leading space(s) character in cell value detection added. Related issue #32.
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 31b2aa1..0ce1e54 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -53,7 +53,7 @@ func TestOpenFile(t *testing.T) { xlsx.GetCellValue("Sheet2", "D11") xlsx.GetCellValue("Sheet2", "D12") // Test SetCellValue function. - xlsx.SetCellValue("Sheet2", "F1", "Hello") + xlsx.SetCellValue("Sheet2", "F1", " Hello") xlsx.SetCellValue("Sheet2", "G1", []byte("World")) xlsx.SetCellValue("Sheet2", "F2", 42) xlsx.SetCellValue("Sheet2", "F2", int8(42)) |