Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GregTrevellick committed Jul 14, 2017
1 parent 06648a2 commit f40856f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/OpenInApp.Common.Tests/Helpers/OpenInAppHelperTests100.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ private void InvokeApplication(KeyToExecutableEnum keyToExecutableEnum, string t
SetExecutableFullPath(keyToExecutableEnum);

InvokeApplication(keyToExecutableEnum, executableFullPath, "Single", ArtefactTypeToOpen.File, typ);
InvokeApplication(keyToExecutableEnum, executableFullPath, "Single", ArtefactTypeToOpen.Folder, null);
InvokeApplication(keyToExecutableEnum, executableFullPath, "Single", ArtefactTypeToOpen.Folder, typ);// null);
InvokeApplication(keyToExecutableEnum, executableFullPath, "Multiple", ArtefactTypeToOpen.File, typ);
InvokeApplication(keyToExecutableEnum, executableFullPath, "Multiple", ArtefactTypeToOpen.Folder, null);
InvokeApplication(keyToExecutableEnum, executableFullPath, "Multiple", ArtefactTypeToOpen.Folder, typ);//null);
}

private void InvokeApplication(KeyToExecutableEnum keyToExecutableEnum, string executableFullPath, string singleOrMultipleArtefacts, ArtefactTypeToOpen artefactTypeToOpen, string typ)
Expand Down Expand Up @@ -187,11 +187,11 @@ private void SetExecutableFullPath(KeyToExecutableEnum keyToExecutableEnum)
case KeyToExecutableEnum.TreeSizeFree:
if (Environment.MachineName == "SIS050")
{
executableFullPath = @"D:\Program Files (x86)\JAM Software\TreeSize Free\TreeSizeFree.exe";
executableFullPath = @"C:\Program Files (x86)\JAM Software\TreeSize Free\TreeSizeFree.exe";
}
else
{
executableFullPath = @"C:\Program Files (x86)\JAM Software\TreeSize Free\TreeSizeFree.exe";
executableFullPath = @"D:\Program Files (x86)\JAM Software\TreeSize Free\TreeSizeFree.exe";
}
break;
case KeyToExecutableEnum.Vivaldi:
Expand Down

0 comments on commit f40856f

Please sign in to comment.