Skip to content

Commit

Permalink
kerneldb test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amystamile-usgs committed Jan 29, 2025
1 parent b8037ec commit d432331
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions isis/src/system/apps/kerneldbgen/kerneldbgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ namespace Isis {
}
}
else {
throw IException(IException::Unknown, "Expected Pvl Group " + primaryGroup.name() + " in the first Pvl Object " + primaryObject.name() + " "
"in the DB file " + kernelFileName.original() + " to have a single keyword (named "
throw IException(IException::Unknown, "Expected Pvl Group [" + primaryGroup.name() + "] in the first Pvl Object [" + primaryObject.name() + "] "
"in the DB file [" + kernelFileName.original() + "] to have a single keyword (named "
"File), but found " + Isis::toString(primaryGroup.keywords()) + " keywords",
_FILEINFO_);
}
Expand All @@ -260,8 +260,8 @@ namespace Isis {
}
}
else {
throw IException(IException::Unknown,"Expected one Pvl Group in the first Pvl Object " + primaryObject.name() + " in "
"the DB file " + kernelFileName.original() + " but found " + Isis::toString(primaryObject.groups()), _FILEINFO_);
throw IException(IException::Unknown,"Expected one Pvl Group in the first Pvl Object [" + primaryObject.name() + "] in "
"the DB file [" + kernelFileName.original() + "] but found [" + Isis::toString(primaryObject.groups()) + "]", _FILEINFO_);
}
}
else {
Expand Down

0 comments on commit d432331

Please sign in to comment.