Here is a failing test which should pass: ``` func TestMatchWildcardInTheMiddle(t *testing.T) { m := setupMatcher(t, "v*o\n") if !m.Match("value/vulkano/tail") { t.Error("expected value/vulkano/tail to match") } } ```
Here is a failing test which should pass: