aboutsummaryrefslogtreecommitdiff
path: root/shflags_parsing_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'shflags_parsing_test.sh')
-rwxr-xr-xshflags_parsing_test.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/shflags_parsing_test.sh b/shflags_parsing_test.sh
index adef50e..606d757 100755
--- a/shflags_parsing_test.sh
+++ b/shflags_parsing_test.sh
@@ -244,7 +244,6 @@ _testNonFlagArgs() {
eval set -- "${FLAGS_ARGV}"
assertEquals 'wrong count of argv arguments returned.' "${argc}" $#
- assertEquals 'wrong count of argc arguments returned.' 0 "${FLAGS_ARGC}"
}
testSingleNonFlagArg() { _testNonFlagArgs 1 argOne; }
@@ -268,7 +267,6 @@ testFlagsWithEquals() {
eval set -- "${FLAGS_ARGV}"
assertEquals 'wrong count of argv arguments returned.' 1 $#
- assertEquals 'wrong count of argc arguments returned.' 1 "${FLAGS_ARGC}"
}
testComplicatedCommandLineStandard() {