summaryrefslogtreecommitdiffstats
path: root/tests/regexpComp.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regexpComp.test')
-rw-r--r--tests/regexpComp.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/regexpComp.test b/tests/regexpComp.test
index 94fb90e..39b2383 100644
--- a/tests/regexpComp.test
+++ b/tests/regexpComp.test
@@ -830,12 +830,12 @@ test regexpComp-21.5 {regexp command compiling tests} {
} 0
test regexpComp-21.6 {regexp command compiling tests} {
evalInProc {
- regexp -n foo dogfoOd
+ regexp -nocase foo dogfoOd
}
} 1
test regexpComp-21.7 {regexp command compiling tests} {
evalInProc {
- regexp -no -- FoO dogfood
+ regexp -nocase -- FoO dogfood
}
} 1
test regexpComp-21.8 {regexp command compiling tests} {
@@ -945,13 +945,13 @@ test regexpComp-24.5 {regexp command compiling tests} {
test regexpComp-24.6 {regexp command compiling tests} {
evalInProc {
set re foo
- regexp -n $re dogfoOd
+ regexp -nocase $re dogfoOd
}
} 1
test regexpComp-24.7 {regexp command compiling tests} {
evalInProc {
set re FoO
- regexp -no -- $re dogfood
+ regexp -nocase -- $re dogfood
}
} 1
test regexpComp-24.8 {regexp command compiling tests} {
@@ -982,7 +982,7 @@ test regexpComp-24.11 {regexp command compiling tests} {
regexp -- $re $text
}
} 1
-
+
# cleanup
::tcltest::cleanupTests
return