Skip to content

Commit 1c2d4af

Browse files
committed
prefix s_ to static fields
1 parent b0e544b commit 1c2d4af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FlaUI.WebDriver.UITests/TestUtil/TestApplication.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ namespace FlaUI.WebDriver.UITests.TestUtil
66
public static class TestApplication
77
{
88

9-
private static readonly string _currentDirectory = Directory.GetCurrentDirectory();
10-
private static readonly string _solutionDirectory = FindSolutionDirectory(_currentDirectory);
9+
private static readonly string s_currentDirectory = Directory.GetCurrentDirectory();
10+
private static readonly string s_solutionDirectory = FindSolutionDirectory(s_currentDirectory);
1111

1212
private static string FindSolutionDirectory(string currentDirectory)
1313
{
@@ -18,7 +18,7 @@ private static string FindSolutionDirectory(string currentDirectory)
1818
return currentDirectory;
1919
}
2020

21-
public static string FullPath => Path.Combine(_solutionDirectory, "TestApplications", "WpfApplication", "bin", "Release", "WpfApplication.exe");
21+
public static string FullPath => Path.Combine(s_solutionDirectory, "TestApplications", "WpfApplication", "bin", "Release", "WpfApplication.exe");
2222
}
2323

2424
}

0 commit comments

Comments
 (0)