Skip to content

Commit 4475e46

Browse files
committed
Rename ShimCommand to RunExeCommand
1 parent eb72504 commit 4475e46

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Tests/Microsoft.NET.TestFramework/Commands/ShimCommand.cs renamed to src/Tests/Microsoft.NET.TestFramework/Commands/RunExeCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
namespace Microsoft.NET.TestFramework.Commands
1010
{
11-
public class ShimCommand : TestCommand
11+
public class RunExeCommand : TestCommand
1212
{
1313
private readonly string _commandPath;
1414

15-
public ShimCommand(ITestOutputHelper log, string commandPath, params string[] args) : base(log)
15+
public RunExeCommand(ITestOutputHelper log, string commandPath, params string[] args) : base(log)
1616
{
1717
if (!File.Exists(commandPath))
1818
{

src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ private void AssertValidShim(string testRoot, string nugetPackage)
419419
shimPath,
420420
null);
421421

422-
var command = new ShimCommand(Log, shimPath)
422+
var command = new RunExeCommand(Log, shimPath)
423423
{
424424
WorkingDirectory = simulateToolPathRoot
425425
};

0 commit comments

Comments
 (0)