Skip to content

Commit 5ee5bf7

Browse files
committed
Path
1 parent e9ad363 commit 5ee5bf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Core/Algorithms/DataIO/Tests/ReadMatrixTests.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ TEST(ReadMatrixAlgorithmTest, TestSparseFromRealASCIIMatFile)
120120
TEST(ReadMatrixAlgorithmTest, TestDenseFromRealASCIIMatFile)
121121
{
122122
ReadMatrixAlgorithm algo;
123-
auto filename = TestResources::rootDir() / "Matrices" / "CGDarrell" / "xScirun.mat";
123+
auto filename = TestResources::rootDir() / "Matrices" / "xScirun.mat";
124124
if (boost::filesystem::exists(filename))
125125
{
126126
auto matrix = algo.run(filename.string());
@@ -141,7 +141,7 @@ TEST(ReadMatrixAlgorithmTest, TestDenseFromRealASCIIMatFile)
141141
TEST(ReadMatrixAlgorithmTest, TestColumnFromRealASCIIMatFile)
142142
{
143143
ReadMatrixAlgorithm algo;
144-
auto filename = TestResources::rootDir() / "Matrices" / "CGDarrell" / "xScirunColumn.mat";
144+
auto filename = TestResources::rootDir() / "Matrices" / "xScirunColumn.mat";
145145
if (boost::filesystem::exists(filename))
146146
{
147147
auto matrix = algo.run(filename.string());

0 commit comments

Comments
 (0)