Parcourir la source

Removed debug print

Colin Fox il y a 10 ans
Parent
commit
cf01fe6476
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 0
      .gitignore
  2. 1 2
      sheet_test.go

+ 1 - 0
.gitignore

@@ -1,3 +1,4 @@
 
 .DS_Store
 xlsx.test
+*.swp

+ 1 - 2
sheet_test.go

@@ -3,7 +3,6 @@ package xlsx
 import (
 	"bytes"
 	"encoding/xml"
-	"fmt"
 
 	. "gopkg.in/check.v1"
 )
@@ -290,6 +289,6 @@ func (s *SheetSuite) TestAlignment(c *C) {
 	//output := bytes.NewBufferString(xml.Header)
 	body, err := xml.Marshal(xSheet)
 	c.Assert(err, IsNil)
-	fmt.Println("body:", string(body))
+	//fmt.Println("body:", string(body))
 
 }