Skip to content
This repository was archived by the owner on Sep 9, 2022. It is now read-only.

Commit 1540d7c

Browse files
Add test_name_matches_pattern in tests_util
1 parent 40fc1dd commit 1540d7c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/internal/tests_util.py

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
from util import name_matches_pattern
88

99

10+
def test_name_matches_pattern(test_name, pattern):
11+
return name_matches_pattern(test_name, pattern)
12+
13+
1014
def test_name_pattern_matcher(pattern):
1115
return lambda test_name: name_matches_pattern(test_name, pattern)
1216

0 commit comments

Comments
 (0)