We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20d242 commit 707c2a2Copy full SHA for 707c2a2
Tests/MathCore.Tests/Interpolation/InterpolatorNDLinearTests.cs
@@ -11,12 +11,11 @@ public class InterpolatorNDLinearTests
11
12
public TestContext? TestContext { get; set; }
13
14
- private FileInfo DataFile
+ private static FileInfo DataFile
15
{
16
get
17
18
- var base_dir = AppDomain.CurrentDomain.BaseDirectory;
19
- var full_path = Path.Combine(base_dir, __DataFilePath);
+ var full_path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, __DataFilePath);
20
var file = new FileInfo(full_path);
21
22
return file.ThrowIfNotFound(FullPathInMessage: true);
0 commit comments