aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite-clopts.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-11-21 01:11:19 +0000
committerGuy Harris <guy@alum.mit.edu>2012-11-21 01:11:19 +0000
commit323fabab959df402d5f15739cd9c25935f81c3b0 (patch)
treefa62b163d455c0efe2d12ee4562b2389d340007a /test/suite-clopts.sh
parent7a9aef34a92fa33301496a30cff9d3b3ce15eb74 (diff)
Fix the capitalization of the error message printed if you specify an
invalid interface index. svn path=/trunk/; revision=46102
Diffstat (limited to 'test/suite-clopts.sh')
-rwxr-xr-xtest/suite-clopts.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite-clopts.sh b/test/suite-clopts.sh
index bee45be342..492c3dff6c 100755
--- a/test/suite-clopts.sh
+++ b/test/suite-clopts.sh
@@ -153,7 +153,7 @@ clopts_step_invalid_interface_index() {
if [ ! $RETURNVALUE -eq $EXIT_COMMAND_LINE ]; then
test_step_failed "exit status: $RETURNVALUE"
else
- grep -i 'there is no interface with that adapter index' ./testout.txt > /dev/null
+ grep -i 'There is no interface with that adapter index' ./testout.txt > /dev/null
if [ $? -eq 0 ]; then
test_step_ok
else