Skip to content

Commit 552dba8

Browse files
authored
Fix where Deployment Item attribute was not deploying items. (#237)
1 parent e3d6e82 commit 552dba8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Adapter/PlatformServices.Desktop/Constants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ internal class Constants
2727

2828
public const string PrivateAssemblies = "PrivateAssemblies";
2929

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

3232
internal const string DllExtension = ".dll";
3333
internal const string ExeExtension = ".exe";

test/UnitTests/PlatformServices.Desktop.Unit.Tests/Utilities/DeploymentItemUtilityTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace MSTestAdapter.PlatformServices.Desktop.UnitTests.Utilities
3131
public class DeploymentItemUtilityTests
3232
{
3333
internal static readonly TestProperty DeploymentItemsProperty = TestProperty.Register(
34-
"MSTestDiscoverer2.DeploymentItems",
34+
"MSTestDiscoverer.DeploymentItems",
3535
"DeploymentItems",
3636
typeof(KeyValuePair<string, string>[]),
3737
TestPropertyAttributes.Hidden,

0 commit comments

Comments
 (0)