From 8120398f6c06ca898d9940546d72d80b774b82ae Mon Sep 17 00:00:00 2001 From: Nick Pillitteri Date: Tue, 17 May 2022 09:38:50 -0400 Subject: [PATCH] WIP: Demo for mimir issue 1866 --- model/labels/matcher_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/model/labels/matcher_test.go b/model/labels/matcher_test.go index 14615a50d..eb69e0b23 100644 --- a/model/labels/matcher_test.go +++ b/model/labels/matcher_test.go @@ -81,6 +81,11 @@ func TestMatcher(t *testing.T) { value: "foo-bar", match: false, }, + { + matcher: mustNewMatcher(t, MatchRegexp, "$*bar"), + value: "foo-bar", + match: false, + }, } for _, test := range tests {