aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/1.0/doc/CHANGES-1.0.txt2
-rw-r--r--source/1.0/doc/contributors.txt5
-rwxr-xr-xsource/1.0/src/shflags_test_private.sh2
3 files changed, 6 insertions, 3 deletions
diff --git a/source/1.0/doc/CHANGES-1.0.txt b/source/1.0/doc/CHANGES-1.0.txt
index fada2cd..4644720 100644
--- a/source/1.0/doc/CHANGES-1.0.txt
+++ b/source/1.0/doc/CHANGES-1.0.txt
@@ -39,6 +39,8 @@ Minor tweaks to make run on FreeBSD 9.1.
Fixed issue in shflags_test_public.sh where screens >80 columns were causing a
test to fail.
+Issue #22. Fixed broken testGetFlagInfo() test.
+
Changes with 1.0.3
------------------
diff --git a/source/1.0/doc/contributors.txt b/source/1.0/doc/contributors.txt
index 146c0c0..2c3c824 100644
--- a/source/1.0/doc/contributors.txt
+++ b/source/1.0/doc/contributors.txt
@@ -1,4 +1,5 @@
I'd like to thank these people for their contributisons to shFlags.
-Maciej Bliziński <blizinski@google.com> -- _many_ code reviews
-Bjarni Einarsson <bre@google.com> -- bug reports
+Maciej Bliziński <blizinski@google.com>
+Bjarni Einarsson <bre@google.com>
+pvanderdoes [http://code.google.com/u/103206786526099082032/]
diff --git a/source/1.0/src/shflags_test_private.sh b/source/1.0/src/shflags_test_private.sh
index 6f15bb8..4f7ccaf 100755
--- a/source/1.0/src/shflags_test_private.sh
+++ b/source/1.0/src/shflags_test_private.sh
@@ -67,7 +67,7 @@ testGetFlagInfo()
rslt=`_flags_getFlagInfo 'blah' 'hubbabubba' >"${stdoutF}" 2>"${stderrF}"`
assertEquals 'invalid flag did not result in an error' ${FLAGS_ERROR} $?
- assertErrorMsg 'invalid flag name'
+ assertErrorMsg 'missing flag info variable'
}
testItemInList()