fix import in test

This commit is contained in:
Laurent Le Goff 2015-08-27 15:50:55 +02:00
parent 48a313740b
commit 7510d72d52
1 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,6 @@ import (
"testing"
"github.com/llgcode/draw2d/draw2dimg"
"github.com/stanim/draw2d"
)
func TestCircle(t *testing.T) {
@ -26,5 +25,5 @@ func TestCircle(t *testing.T) {
Circle(gc, 100, 100, 50)
gc.Stroke()
draw2d.SaveToPngFile("../output/draw2dkit/TestCircle.png", img)
draw2dimg.SaveToPngFile("../output/draw2dkit/TestCircle.png", img)
}