From 9f59f37683c1a58d4bc1cebfec756883baa3f93b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Egelund-M=C3=BCller?= Date: Wed, 3 Jul 2024 21:23:13 +0200 Subject: [PATCH] Fix wildcard --- runtime/compilers/rillv1/parser_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/compilers/rillv1/parser_test.go b/runtime/compilers/rillv1/parser_test.go index 6aade24ecd7..a1278f7a2bb 100644 --- a/runtime/compilers/rillv1/parser_test.go +++ b/runtime/compilers/rillv1/parser_test.go @@ -1150,13 +1150,13 @@ security: row_filter: true include: - if: "'{{ .user.domain }}' = 'example.com'" - all: true + names: '*' - if: true names: [a] exclude: - # Whoopsie empty - if: "'{{ .user.domain }}' = 'bad.com'" - all: true + names: '*' - if: true names: [b] `,