@@ -52,7 +52,7 @@ public void CreateNewImage_Baseline()
52
52
task . BaseImageTag = "7.0" ;
53
53
54
54
task . OutputRegistry = "localhost:5010" ;
55
- task . LocalRegistry = DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) Attribute . LocalRegistry ;
55
+ task . LocalRegistry = DockerAvailableFactAttribute . LocalRegistry ;
56
56
task . PublishDirectory = Path . Combine ( newProjectDir . FullName , "bin" , "Release" , ToolsetInfo . CurrentTargetFramework , "linux-arm64" , "publish" ) ;
57
57
task . Repository = "dotnet/create-new-image-baseline" ;
58
58
task . ImageTags = new [ ] { "latest" } ;
@@ -133,7 +133,7 @@ public void ParseContainerProperties_EndToEnd()
133
133
/// <summary>
134
134
/// Creates a console app that outputs the environment variable added to the image.
135
135
/// </summary>
136
- [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ( ) ]
136
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
137
137
public void Tasks_EndToEnd_With_EnvironmentVariable_Validation ( )
138
138
{
139
139
DirectoryInfo newProjectDir = new ( GetTestDirectoryName ( ) ) ;
@@ -198,7 +198,7 @@ public void Tasks_EndToEnd_With_EnvironmentVariable_Validation()
198
198
cni . ContainerEnvironmentVariables = pcp . NewContainerEnvironmentVariables ;
199
199
cni . ContainerRuntimeIdentifier = "linux-x64" ;
200
200
cni . RuntimeIdentifierGraphPath = ToolsetUtils . GetRuntimeGraphFilePath ( ) ;
201
- cni . LocalRegistry = DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) Attribute . LocalRegistry ;
201
+ cni . LocalRegistry = DockerAvailableFactAttribute . LocalRegistry ;
202
202
203
203
Assert . True ( cni . Execute ( ) , FormatBuildMessages ( errors ) ) ;
204
204
0 commit comments