Commit 6ed75e25 authored by Jacob Vosmaer's avatar Jacob Vosmaer

Do not need the "log" package

parent d377859b
package badgateway
import (
"log"
"testing"
)
......@@ -30,7 +29,7 @@ func TestMustParseAddress(t *testing.T) {
t.Errorf("expected panic for %v but none occurred", panicExample)
}
}()
log.Print(mustParseAddress(panicExample.address, panicExample.scheme))
t.Log(mustParseAddress(panicExample.address, panicExample.scheme))
}()
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment