@@ -52,7 +52,7 @@ public void CreateNewImage_Baseline()
5252 task . BaseImageTag = "7.0" ;
5353
5454 task . OutputRegistry = "localhost:5010" ;
55- task . LocalRegistry = DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) Attribute . LocalRegistry ;
55+ task . LocalRegistry = DockerAvailableFactAttribute . LocalRegistry ;
5656 task . PublishDirectory = Path . Combine ( newProjectDir . FullName , "bin" , "Release" , ToolsetInfo . CurrentTargetFramework , "linux-arm64" , "publish" ) ;
5757 task . Repository = "dotnet/create-new-image-baseline" ;
5858 task . ImageTags = new [ ] { "latest" } ;
@@ -133,7 +133,7 @@ public void ParseContainerProperties_EndToEnd()
133133 /// <summary>
134134 /// Creates a console app that outputs the environment variable added to the image.
135135 /// </summary>
136- [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ( ) ]
136+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
137137 public void Tasks_EndToEnd_With_EnvironmentVariable_Validation ( )
138138 {
139139 DirectoryInfo newProjectDir = new ( GetTestDirectoryName ( ) ) ;
@@ -198,7 +198,7 @@ public void Tasks_EndToEnd_With_EnvironmentVariable_Validation()
198198 cni . ContainerEnvironmentVariables = pcp . NewContainerEnvironmentVariables ;
199199 cni . ContainerRuntimeIdentifier = "linux-x64" ;
200200 cni . RuntimeIdentifierGraphPath = ToolsetUtils . GetRuntimeGraphFilePath ( ) ;
201- cni . LocalRegistry = DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) Attribute . LocalRegistry ;
201+ cni . LocalRegistry = DockerAvailableFactAttribute . LocalRegistry ;
202202
203203 Assert . True ( cni . Execute ( ) , FormatBuildMessages ( errors ) ) ;
204204
0 commit comments