We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e7eaa commit 6e70fc3Copy full SHA for 6e70fc3
1 file changed
tests/robotcode/core/test_safeeval.py
@@ -47,7 +47,7 @@ def test_safe_eval_should_not_allow_builtin_names(expression: str) -> None:
47
("expression", "result"),
48
[
49
("'PATH' in environ", True),
50
- ("bool(re.match('\\d+', '1234'))", True),
+ (r"bool(re.match('\\d+', '1234'))", True),
51
],
52
)
53
def test_safe_eval_simple_should_support_custom_globals(expression: str, result: Any) -> None:
0 commit comments