Skip to content

Commit 7469b89

Browse files
committed
Fix typo in Info app help.
1 parent 14733d4 commit 7469b89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libsrc/geomodelgrids/apps/Info.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ geomodelgrids::apps::Info::_printHelp(void) {
195195
<< " --coordsys Display model coordinate system.\n"
196196
<< " --values Display names and units of values stored in the model.\n"
197197
<< " --blocks Display description of blocks.\n"
198-
<< " --all Display description, coordinate system, values, and blocks"
198+
<< " --all Display description, coordinate system, values, and blocks\n"
199199
<< " --verify Verify model conforms to GeoModelGrids specifications."
200200
<< std::endl;
201201
} // _printHelp

tests/libtests/apps/TestInfo.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ geomodelgrids::apps::TestInfo::testPrintHelp(void) {
327327
Info info;
328328
info._printHelp();
329329
std::cout.rdbuf(coutOrig);
330-
CPPUNIT_ASSERT_EQUAL(size_t(727), coutHelp.str().length());
330+
CPPUNIT_ASSERT_EQUAL(size_t(728), coutHelp.str().length());
331331
} // testPrintHelp
332332

333333

@@ -348,7 +348,7 @@ geomodelgrids::apps::TestInfo::testRunHelp(void) {
348348
info.run(nargs, const_cast<char**>(args));
349349

350350
std::cout.rdbuf(coutOrig);
351-
CPPUNIT_ASSERT_EQUAL(size_t(727), coutHelp.str().length());
351+
CPPUNIT_ASSERT_EQUAL(size_t(728), coutHelp.str().length());
352352
} // testRunHelp
353353

354354

0 commit comments

Comments
 (0)