Prechádzať zdrojové kódy

Remove debugging directives.

nfnt 10 rokov pred
rodič
commit
563154816f
1 zmenil súbory, kde vykonal 1 pridanie a 3 odobranie
  1. 1 3
      resize_test.go

+ 1 - 3
resize_test.go

@@ -2,7 +2,6 @@ package resize
 
 
 import (
 import (
 	"image"
 	"image"
-	"fmt"
 	"image/color"
 	"image/color"
 	"runtime"
 	"runtime"
 	"testing"
 	"testing"
@@ -95,8 +94,7 @@ func Test_ResizeWithPremultipliedAlpha(t *testing.T) {
 
 
 	out := Resize(1, 2, img, MitchellNetravali)
 	out := Resize(1, 2, img, MitchellNetravali)
 
 
-	fmt.Println(out)
-	outputColor := out.At(0,0).(color.NRGBA)
+	outputColor := out.At(0, 0).(color.NRGBA)
 	if outputColor.R != 0xFF {
 	if outputColor.R != 0xFF {
 		t.Fail()
 		t.Fail()
 	}
 	}