Skip to content

Commit f06b965

Browse files
author
Jake Ginnivan
committed
Code cleanup
1 parent 2bd4795 commit f06b965

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/TestStack.White.UITests/Scenarios/Win32Tests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ namespace TestStack.White.UITests.Scenarios
1212
{
1313
public class Win32Tests
1414
{
15-
private const string ExeSourceFile = @"C:\Windows\system32\calc.exe";
16-
private const string Notepad = @"C:\Windows\system32\notepad.exe";
17-
const string IExplorer = @"C:\Program Files\Internet Explorer\iexplore.exe";
15+
const string ExeSourceFile = @"C:\Windows\system32\calc.exe";
16+
const string Notepad = @"C:\Windows\system32\notepad.exe";
17+
const string InternetExplorer = @"C:\Program Files\Internet InternetExplorer\iexplore.exe";
1818

1919
[Fact]
2020
public void NotepadTests()
@@ -36,7 +36,7 @@ public void NotepadTests()
3636
[Fact]
3737
public void InternetExplorerTests()
3838
{
39-
using (var app = Application.Launch(IExplorer))
39+
using (var app = Application.Launch(InternetExplorer))
4040
using (var window = app.GetWindows().Single())
4141
{
4242
var button = window.Get<Button>(SearchCriteria.ByAutomationId("Item 3"));

0 commit comments

Comments
 (0)