fix the continue block parse error

This commit is contained in:
Liu Ming
2016-06-23 10:22:57 +08:00
parent 0b5fd56f62
commit 991920a697
3 changed files with 36 additions and 31 deletions

View File

@@ -7,7 +7,7 @@ import (
)
func TestOpen(t *testing.T) {
if xlFile, err := Open("Preisliste.xls", "utf-8"); err == nil {
if xlFile, err := Open("Book1.xls", "utf-8"); err == nil {
if sheet1 := xlFile.GetSheet(0); sheet1 != nil {
fmt.Println("Total Lines ", sheet1.MaxRow, sheet1.Name)
for i := 0; i < int(sheet1.MaxRow); i++ {