fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

query: remove TestMetaSimplify (#965)

This was a leftover from the commit merged yesterday for code that was
removed.

Test Plan: go test ./...

-10
-10
query/query_test.go
··· 178 178 }) 179 179 } 180 180 } 181 - 182 - func TestMetaSimplify(t *testing.T) { 183 - re := regexp.MustCompile("v1") 184 - q := &Meta{Field: "version", Value: re} 185 - 186 - simplified := q.Simplify() 187 - if !reflect.DeepEqual(q, simplified) { 188 - t.Errorf("Meta.Simplify() = %v, want %v", simplified, q) 189 - } 190 - }