Unverified Commit 44cd72a1 authored by Austin Sanders's avatar Austin Sanders Committed by GitHub
Browse files

Removed capital E that caused an error (#5466)

* Removed capital E that caused an error

* Updated changelog
parent 473ea00c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ release.
- Skypt has been refactored to be callable; old Makefile tests have been removed and replaced by gtests. Issue: [#5443](https://github.com/USGS-Astrogeology/ISIS3/issues/5443)

### Fixed
- Fixed a bug in which capital E was problematic for OSX / Ubuntu
- Fixed bug in which not all references to 'version' file were replaced with new 'isis_version.txt' file [#5374](https://github.com/DOI-USGS/ISIS3/issues/5374)
- Fixed a bug in which the IrregularBodyCameraGroundMap unit test was removed but not the associated truth file. [#5461](https://github.com/DOI-USGS/ISIS3/issues/5461)
- Fixed a bug in which the histogram tool used the entire image to calculate bin size, which caused an issue with high dynamic range images. [#5371](https://github.com/DOI-USGS/ISIS3/issues/5371)
+2 −2
Original line number Diff line number Diff line
@@ -324,11 +324,11 @@ void TestNetwork(const QString &filename, Progress *progress, bool printNetwork,
      cNet2->write( FileName("./tmpCNet2") );

      //if there are differences between the pvls.
      QString cmd = "diff -EbB --suppress-common-lines -I 'Version.*' " + networkFileName.expanded() + " ./tmp.pvl";
      QString cmd = "diff -bB --suppress-common-lines -I 'Version.*' " + networkFileName.expanded() + " ./tmp.pvl";
      if(system(cmd.toStdString().c_str())) {

        //if the binary files are different.
        if(system("diff -EbB --suppress-common-lines ./tmp ./tmpCNet2")){
        if(system("diff -bB --suppress-common-lines ./tmp ./tmpCNet2")){
          cout << "The conversion from binary to pvl is incorrect." << endl;
        }
        else {
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ namespace Isis {
    output->putGroup(instGrp);

    // Create a Band Bin group
    FileName bandTransFile(transDir + "OsirisRExTagcamsBandBin_fit.trn");
    FileName bandTransFile(transDir + "OsirisRexTagcamsBandBin_fit.trn");
    PvlToPvlTranslationManager bandBinXlater(fitsLabel, bandTransFile.expanded());
    bandBinXlater.Auto(outLabel);
    output->putGroup(outLabel.findGroup("BandBin", Pvl::Traverse));