shortened long default value in help tests
diff --git a/source/1.0/src/shflags_test_public.sh b/source/1.0/src/shflags_test_public.sh
index e985155..65bd4ab 100755
--- a/source/1.0/src/shflags_test_public.sh
+++ b/source/1.0/src/shflags_test_public.sh
@@ -71,7 +71,7 @@
   DEFINE_string long_desc 'blah' \
       'testing of a long description to force wrap of default value' D
   DEFINE_string long_default \
-      'this_is_a_really_long_default_value_to_force_alternate_indentation' \
+      'this_is_a_long_default_value_to_force_alternate_indentation' \
       'testing of long default value' F
   help='USAGE: standard [flags] args'
 
@@ -84,7 +84,7 @@
   -D  testing of a long description to force wrap of default value
       (default: 'blah')
   -F  testing of long default value
-      (default: 'this_is_a_really_long_default_value_to_force_alternate_indentation')
+      (default: 'this_is_a_long_default_value_to_force_alternate_indentation')
   -h  show this help (default: false)
 EOF
   ( FLAGS_HELP=${help}; FLAGS -h >"${stdoutF}" 2>"${stderrF}" )
@@ -104,7 +104,7 @@
   DEFINE_string long_desc 'blah' \
       'testing of a long description to force wrap of default value' l
   DEFINE_string long_default \
-      'this_is_a_really_long_default_value_to_force_alternate_indentation' \
+      'this_is_a_long_default_value_to_force_alternate_indentation' \
       'testing of long default value' F
   help='USAGE: enhanced [flags] args'
 
@@ -117,7 +117,7 @@
   -D,--long_desc:  testing of a long description to force wrap of default value
                    (default: 'blah')
   -F,--long_default:  testing of long default value
-    (default: 'this_is_a_really_long_default_value_to_force_alternate_indentation')
+    (default: 'this_is_a_long_default_value_to_force_alternate_indentation')
   -h,--[no]help:  show this help (default: false)
 EOF
   ( FLAGS_HELP=${help}; FLAGS -h >"${stdoutF}" 2>"${stderrF}" )