Thanks to visit codestin.com Credit goes to github.com
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 b91c829 commit 128597eCopy full SHA for 128597e
1 file changed
lib/core/testing.py
@@ -129,7 +129,7 @@ def liveTest():
129
if case.hasAttribute("name"):
130
name = case.getAttribute("name")
131
132
- if conf.runCase and ((conf.runCase.isdigit() and conf.runCase != count) or not re.search(conf.runCase, name, re.DOTALL)):
+ if conf.runCase and ((conf.runCase.isdigit() and conf.runCase != count) or not re.search(conf.runCase, name, re.DOTALL | re.I)):
133
continue
134
135
if case.getElementsByTagName("switches"):
0 commit comments