Browse Source

Removed debug print

Colin Fox 10 years ago
parent
commit
cf01fe6476
2 changed files with 2 additions and 2 deletions
  1. 1 0
      .gitignore
  2. 1 2
      sheet_test.go

+ 1 - 0
.gitignore

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

+ 1 - 2
sheet_test.go

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