From 4678a066b62eb87d8387c83beacb3f5ca401ce90 Mon Sep 17 00:00:00 2001 From: Tomas Aparicio Date: Sat, 13 Jun 2015 22:43:32 +0100 Subject: [PATCH] fix(test): bad option field --- resize_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resize_test.go b/resize_test.go index 1397d6d..7bde1a2 100644 --- a/resize_test.go +++ b/resize_test.go @@ -72,7 +72,7 @@ func TestInvalidRotate(t *testing.T) { } func TestNoColorProfile(t *testing.T) { - options := Options{Width: 800, Height: 600, NoColorProfile: true} + options := Options{Width: 800, Height: 600, NoProfile: true} buf, _ := Read("fixtures/test.jpg") newImg, err := Resize(buf, options)