Commit fe7416c8 authored by acpaquette's avatar acpaquette
Browse files

Fixed last 3 failing gtests

parent 793fc945
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ namespace Isis {
    // Send the Output to the log area
    Pvl statsPvl = camStats.toPvl();
    for (int i = 0; i < statsPvl.groups(); i++) {
      Application::Log(statsPvl.group(i));
      Application::AppendAndLog(statsPvl.group(i));
    }

    if(ui.WasEntered("TO")) {
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ namespace Isis{
    }
    // Add mapping to print.prt
    PvlGroup mapping = proj->Mapping();
    Application::Log(mapping);
    Application::AppendAndLog(mapping);

    delete proj;
    proj = NULL;
+1 −3
Original line number Diff line number Diff line
@@ -72,9 +72,7 @@ namespace Isis {
  /** Add log Group to log file and console for backward compatability */
  inline void db_addLogGroup( Pvl *log, PvlGroup &group ) {
    // Report translations...
    // Emulates: pvl->addLogGroup( group );
    log->addGroup( group );
    Application::Log( group );
    Application::AppendAndLog( group );
    return;
  }