Skip to content

Commit

Permalink
Fix where Deployment Item attribute was not deploying items. (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
khilangoel authored Aug 8, 2017
1 parent e3d6e82 commit 552dba8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Adapter/PlatformServices.Desktop/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal class Constants

public const string PrivateAssemblies = "PrivateAssemblies";

public static readonly TestProperty DeploymentItemsProperty = TestProperty.Register("MSTestDiscoverer2.DeploymentItems", DeploymentItemsLabel, typeof(KeyValuePair<string, string>[]), TestPropertyAttributes.Hidden, typeof(TestCase));
public static readonly TestProperty DeploymentItemsProperty = TestProperty.Register("MSTestDiscoverer.DeploymentItems", DeploymentItemsLabel, typeof(KeyValuePair<string, string>[]), TestPropertyAttributes.Hidden, typeof(TestCase));

internal const string DllExtension = ".dll";
internal const string ExeExtension = ".exe";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace MSTestAdapter.PlatformServices.Desktop.UnitTests.Utilities
public class DeploymentItemUtilityTests
{
internal static readonly TestProperty DeploymentItemsProperty = TestProperty.Register(
"MSTestDiscoverer2.DeploymentItems",
"MSTestDiscoverer.DeploymentItems",
"DeploymentItems",
typeof(KeyValuePair<string, string>[]),
TestPropertyAttributes.Hidden,
Expand Down

0 comments on commit 552dba8

Please sign in to comment.