remove more global references (#7442)

This commit is contained in:
Chris
2017-09-14 12:01:44 -05:00
committed by Harrison Healey
parent af81f7e48b
commit b6fb98a431
36 changed files with 252 additions and 241 deletions

View File

@@ -18,7 +18,7 @@ func TestCodeProviderDoCommand(t *testing.T) {
"foo\nbar": " foo\n bar",
"foo\nbar\n": " foo\n bar\n ",
} {
actual := cp.DoCommand(args, msg).Text
actual := cp.DoCommand(nil, args, msg).Text
if actual != expected {
t.Errorf("expected `%v`, got `%v`", expected, actual)
}