Skip to content

Commit d2f2e9c

Browse files
author
oliag
committed
Fixed unit tests
1 parent f68bf14 commit d2f2e9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Microsoft.ML.TestFramework/BaseTestBaseline.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ void IDisposable.Dispose()
4949
private const string SamplesRootRelPath = @"Samples"; // Root location of Samples. Used primarily for local runs
5050
private const string TestDir = @"Tests";
5151

52-
private const string DataRootRegExp = @"[a-z]:\\[^/\t ]+\\test\\data" + @"\\[^/\t ]+";
52+
private const string DataRootRegExp = @"[a-z]:\\[^/\t ]+\\examples\\datasets" + @"\\[^/\t ]+";
5353
private const string SamplesRootRegExp = @"[a-z]:\\[^/\t ]+\\Samples\\";
5454
private const string SourceRootRegExp = @"[a-z]:\\[^/\t ]+\\source\\";
5555
private const string TestsRootRegExp = @"[a-z]:\\[^/\t ]+\\Tests\\";
5656

57-
private const string DataRootUnixRegExp = @"\/[^\\\t ]+\/test\/data" + @"\/[^\\\t ]+";
57+
private const string DataRootUnixRegExp = @"\/[^\\\t ]+\/examples\/datasets" + @"\/[^\\\t ]+";
5858
private const string SamplesRootUnixRegExp = @"\/[^\\\t ]+\/Samples\/[^\\\t ]+";
5959
private const string SourceRootUnixRegExp = @"\/[^\\\t ]+\/source\/[^\\\t ]+";
6060
private const string TestsRootUnixRegExp = @"\/[^\\\t ]+\/Tests\/[^\\\t ]+";

0 commit comments

Comments
 (0)