From 12758062fed3a4b2fd681d59cd87bc935fa85435 Mon Sep 17 00:00:00 2001 From: Kelvin Date: Mon, 26 Oct 2020 15:39:14 -0700 Subject: [PATCH] also renamed in fixture --- isis/tests/Fixtures.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/isis/tests/Fixtures.cpp b/isis/tests/Fixtures.cpp index b5193da323..979926c74e 100644 --- a/isis/tests/Fixtures.cpp +++ b/isis/tests/Fixtures.cpp @@ -256,11 +256,11 @@ namespace Isis { void ObservationPair::SetUp() { - FileName labelPathL = FileName("data/observationPair/stereoImageL.pvl"); - FileName labelPathR = FileName("data/observationPair/stereoImageR.pvl"); + FileName labelPathL = FileName("data/observationPair/observationImageL.pvl"); + FileName labelPathR = FileName("data/observationPair/observationImageR.pvl"); - isdPathL = new FileName("data/observationPair/stereoImageL.isd"); - isdPathR = new FileName("data/observationPair/stereoImageR.isd"); + isdPathL = new FileName("data/observationPair/observationImageL.isd"); + isdPathR = new FileName("data/observationPair/observationImageR.isd"); cubeL = new Cube(); cubeR = new Cube(); @@ -278,7 +278,7 @@ namespace Isis { cubeListFile = tempDir.path() + "/cubes.lis"; cubeList->write(cubeListFile); - cnetPath = "data/observationPair/stereoPair.net"; + cnetPath = "data/observationPair/observationPair.net"; network = new ControlNet(); network->ReadControl(cnetPath); }