Skip to content

Commit

Permalink
Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
denisbrodbeck committed Dec 18, 2017
1 parent 2085072 commit 4fa8ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion primitive_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func TestPrimitive(t *testing.T) {
}
w, h := ImageWidthAndHeight(img)
outputSize := largerOne(w, h)
svg, err := Primitive(img, 64, outputSize, 8, 0, 128, 0, 1)
svg, err := Primitive(img, 64, outputSize, 8, 0, 128, 0, 1, "")
if err != nil {
t.Error(err)
}
Expand Down
2 changes: 1 addition & 1 deletion run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package sqip
import "testing"

func TestRun(t *testing.T) {
svg, w, h, err := Run(testImage, 64, 4, 0, 128, 0, 1)
svg, w, h, err := Run(testImage, 64, 4, 0, 128, 0, 1, "")
if err != nil {
t.Error(err)
}
Expand Down

0 comments on commit 4fa8ecc

Please sign in to comment.