aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKate Ward <kate.ward@forestent.com>2020-04-13 23:53:37 +0200
committerKate Ward <kate.ward@forestent.com>2020-04-13 23:53:37 +0200
commit91982504ffc0b9511cb685ea191a990883f4ae8c (patch)
treeede4765e2af15a309e67d06914e0c49f1897fa08
parent46e081ec6e08313e4f0f314feee6650fe44eabfc (diff)
downloadshflags-91982504ffc0b9511cb685ea191a990883f4ae8c.tar.gz
Removed FLAGS_ARGC harder.
-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() {