fix the continue block parse error
This commit is contained in:
@@ -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++ {
|
||||
|
||||
Reference in New Issue
Block a user