corrected some merge issues

This commit is contained in:
Todd Gruben 2017-08-08 12:06:06 -05:00
parent 728308a5bb
commit dfbfc217d9
2 changed files with 2 additions and 2 deletions

View file

@ -940,7 +940,7 @@ func TestFragment_Zero_Tanimoto(t *testing.T) {
}
func TestFragment_Snapshot_Run(t *testing.T) {
f := MustOpenFragment("i", "f", pilosa.ViewStandard, 0, "")
f := test.MustOpenFragment("i", "f", pilosa.ViewStandard, 0, "")
defer f.Close()
// Set bits on the fragment.

View file

@ -165,7 +165,7 @@ func (s *Server) Open() error {
go func() {
err := http.Serve(ln, s.Handler)
if err != nil {
s.logger().Printf("HTTP handler terminated with error: %s\n", err)
s.Logger().Printf("HTTP handler terminated with error: %s\n", err)
}
}()