From 08c48f8a4ee398864517a5277a100bf04ef4f686 Mon Sep 17 00:00:00 2001 From: Kaj Williams <kewilliams@usgs.gov> Date: Wed, 22 Aug 2018 13:06:06 -0700 Subject: [PATCH] cleaned up isd variable. --- tests/FrameCameraTests.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/FrameCameraTests.cpp b/tests/FrameCameraTests.cpp index 9023031..1ca19b9 100644 --- a/tests/FrameCameraTests.cpp +++ b/tests/FrameCameraTests.cpp @@ -13,7 +13,6 @@ using json = nlohmann::json; class FrameIsdTest : public ::testing::Test { protected: - csm::Isd isd; virtual void SetUp() { std::ifstream isdFile("data/simpleFramerISD.json"); @@ -42,7 +41,7 @@ class FrameSensorModel : public ::testing::Test { sensorModel = NULL; std::ifstream isdFile("data/simpleFramerISD.json"); json jsonIsd = json::parse(isdFile); - //csm::Isd isd; + csm::Isd isd; for (json::iterator it = jsonIsd.begin(); it != jsonIsd.end(); ++it) { json jsonValue = it.value(); if (jsonValue.size() > 1) { -- GitLab