fix tests again

This commit is contained in:
Ruan Bekker 2019-04-18 18:28:44 +02:00 committed by GitHub
parent 9b0332d909
commit 1d0bceef51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ func TestMain(m *testing.M) {
}
func TestHelloWorld(t *testing.T) {
if HelloWorld() != "hello world" {
if HelloWorld() != "hello, world" {
t.Errorf("got %s expected %s", HelloWorld(), "hello, world")
}
}