Skip to content

Commit

Permalink
fixed local pointsstats and imagestats failures (#4042)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiroux authored Sep 30, 2020
1 parent d13b33e commit 0de251d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions isis/tests/FunctionalTestCnetstats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ TEST_F(ThreeImageNetwork, FunctionalTestCnetstatsDefault) {

TEST_F(ThreeImageNetwork, FunctionalTestCnetstatsImageStats) {
// Setup output file
QTemporaryFile statsFile;
QTemporaryFile statsFile("statsFile");
ASSERT_TRUE(statsFile.open());

QVector<QString> args = {"create_image_stats=yes", "image_stats_file=" + statsFile.fileName()};
Expand All @@ -91,7 +91,7 @@ TEST_F(ThreeImageNetwork, FunctionalTestCnetstatsImageStats) {

TEST_F(ThreeImageNetwork, FunctionalTestCnetstatsPointStats) {
// Setup output file
QTemporaryFile statsFile;
QTemporaryFile statsFile("statsFile");
ASSERT_TRUE(statsFile.open());

QVector<QString> args = {"create_point_stats=yes", "point_stats_file=" + statsFile.fileName()};
Expand Down

0 comments on commit 0de251d

Please sign in to comment.