@@ -187,19 +187,19 @@ public void CanCreateEnvironmentWithAllProperties()
187
187
{
188
188
CommandRuntime = commandRuntimeMock . Object ,
189
189
Name = "Katal" ,
190
- ActiveDirectoryEndpoint = "ActiveDirectoryEndpoint" ,
190
+ ActiveDirectoryEndpoint = "https:// ActiveDirectoryEndpoint" ,
191
191
AdTenant = "AdTenant" ,
192
192
AzureKeyVaultDnsSuffix = "AzureKeyVaultDnsSuffix" ,
193
- ActiveDirectoryServiceEndpointResourceId = "ActiveDirectoryServiceEndpointResourceId" ,
194
- AzureKeyVaultServiceEndpointResourceId = "AzureKeyVaultServiceEndpointResourceId" ,
193
+ ActiveDirectoryServiceEndpointResourceId = "https:// ActiveDirectoryServiceEndpointResourceId" ,
194
+ AzureKeyVaultServiceEndpointResourceId = "https:// AzureKeyVaultServiceEndpointResourceId" ,
195
195
EnableAdfsAuthentication = true ,
196
- GalleryEndpoint = "GalleryEndpoint" ,
197
- GraphEndpoint = "GraphEndpoint" ,
198
- ManagementPortalUrl = "ManagementPortalUrl" ,
199
- PublishSettingsFileUrl = "PublishSettingsFileUrl" ,
200
- ResourceManagerEndpoint = "ResourceManagerEndpoint" ,
201
- ServiceEndpoint = "ServiceEndpoint" ,
202
- StorageEndpoint = "StorageEndpoint" ,
196
+ GalleryEndpoint = "https:// GalleryEndpoint" ,
197
+ GraphEndpoint = "https:// GraphEndpoint" ,
198
+ ManagementPortalUrl = "https:// ManagementPortalUrl" ,
199
+ PublishSettingsFileUrl = "https:// PublishSettingsFileUrl" ,
200
+ ResourceManagerEndpoint = "https:// ResourceManagerEndpoint" ,
201
+ ServiceEndpoint = "https:// ServiceEndpoint" ,
202
+ StorageEndpoint = "https:// StorageEndpoint" ,
203
203
SqlDatabaseDnsSuffix = "SqlDatabaseDnsSuffix" ,
204
204
TrafficManagerDnsSuffix = "TrafficManagerDnsSuffix" ,
205
205
GraphAudience = "GaraphAudience"
@@ -210,7 +210,7 @@ public void CanCreateEnvironmentWithAllProperties()
210
210
cmdlet . InvokeEndProcessing ( ) ;
211
211
Assert . Equal ( cmdlet . Name , actual . Name ) ;
212
212
Assert . Equal ( cmdlet . EnableAdfsAuthentication . ToBool ( ) , actual . EnableAdfsAuthentication ) ;
213
- Assert . Equal ( cmdlet . ActiveDirectoryEndpoint , actual . ActiveDirectoryAuthority ) ;
213
+ Assert . Equal ( cmdlet . ActiveDirectoryEndpoint + "/" , actual . ActiveDirectoryAuthority , StringComparer . OrdinalIgnoreCase ) ;
214
214
Assert . Equal ( cmdlet . ActiveDirectoryServiceEndpointResourceId ,
215
215
actual . ActiveDirectoryServiceEndpointResourceId ) ;
216
216
Assert . Equal ( cmdlet . AdTenant , actual . AdTenant ) ;
0 commit comments