File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/ServiceManagement/Services/Commands.Test/Profile Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,14 @@ public static MockCsmSubscriptionOperations Create(IList<string> knownSubscripti
254
254
return Task . FromResult ( result ) ;
255
255
}
256
256
257
+ public Task < Azure . Subscriptions . Models . LocationListResult > ListLocationsAsync ( string subscriptionId , System . Threading . CancellationToken cancellationToken )
258
+ {
259
+ var result = new Azure . Subscriptions . Models . LocationListResult ( ) ;
260
+ result . Locations = new List < Azure . Subscriptions . Models . Location > ( ) ;
261
+
262
+ return Task . FromResult ( result ) ;
263
+ }
264
+
257
265
private static Azure . Subscriptions . Models . Subscription CreateSubscription ( string subscriptionId )
258
266
{
259
267
return new Azure . Subscriptions . Models . Subscription
You can’t perform that action at this time.
0 commit comments