From e9c25121b521fb4edda89032e662610bc700a034 Mon Sep 17 00:00:00 2001 From: Ivan Mikushin Date: Wed, 22 Jun 2016 18:48:38 -0700 Subject: [PATCH] Fix conf_test.go compile error --- conf/conf_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/conf_test.go b/conf/conf_test.go index 9b9979f..797a977 100644 --- a/conf/conf_test.go +++ b/conf/conf_test.go @@ -39,7 +39,7 @@ func TestDuplicates(t *testing.T) { } for i, d := range testData { - trash := Trash{"", d.imports} + trash := Trash{"", d.imports, nil} trash.Dedupe() if d.duplicates != len(d.imports)-len(trash.Imports) {