Remove debugging directives.

This commit is contained in:
nfnt 2015-05-12 15:24:41 +02:00
parent c3c062672a
commit 563154816f

View File

@ -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()
} }