Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App test fixes #3779

Merged
merged 18 commits into from
Mar 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion isis/src/messenger/apps/mdis2isis/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ int CreateFilterSpecs(const QString &instId, int filter_code,
else if(instId == "MDIS-WAC") {
// Set up WAC calibration file
FileName calibFile("$ISISROOT/appdata/translations/MessengerMdisCalibration.trn");
calibFile = calibFile.highestVersion();
Pvl config(calibFile.expanded());

PvlGroup &confgrp = config.findGroup("FilterWheel");
Expand Down
1 change: 0 additions & 1 deletion isis/src/messenger/apps/mdiscal/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ void IsisMain() {
// calibration a one pass system in this case, rather than two.
ProcessByLine p;
FileName calibFile("$ISISROOT/appdata/translations/MessengerMdisCalibration.trn");
calibFile = calibFile.highestVersion();
g_configFile.read(calibFile.expanded());

// Initialize variables
Expand Down
2 changes: 1 addition & 1 deletion isis/src/messenger/apps/mdisddr/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ void IsisMain() {
p.CheckStatus();

// All done...write result.
pdsLabel.setFormatTemplate("$ISISROOT/appdata/templates/mdisddr/mdisPdsDdr.def");
pdsLabel.setFormatTemplate("$ISISROOT/appdata/translations/mdisPdsDdr.def");
QString ofile(output.expanded());
ofstream outstream(ofile.toLatin1().data());
processPds.OutputLabel(outstream);
Expand Down