File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,19 @@ type Mocks() =
1717 if args.Type = " azure:storage/account:Account"
1818 then [ " primaryWebEndpoint" , sprintf " https://%s .web.core.windows.net" args.Name :> obj]
1919 else []
20-
20+
2121 let outputs =
2222 [ inputKVs; nameKVs; endpointKVs]
2323 |> Seq.concat
2424 |> Seq.filter ( fun ( k , _ ) -> args.Type <> " azure:storage/blob:Blob" || k <> " source" )
2525 |> Seq.map KeyValuePair
26- let dict = outputs.ToImmutableDictionary() :> obj
26+ let dict = outputs.ToImmutableDictionary() :> obj
2727
2828 // Default the resource ID to `{name}_id`.
29- let id = if args.Id = null then sprintf " %s _id" args.Name else args.Id
29+ let id = if args.Id = null then sprintf " %s _id" args.Name else args.Id
3030 Task.FromResult( struct ( id, dict))
3131
3232 member this.CallAsync ( args : MockCallArgs ): Task < obj > =
3333 // We don't use this method in this particular test suite.
3434 // Default to returning whatever we got as input.
35- Task.FromResult( null :> obj )
35+ Task.FromResult( null :> 'a )
You can’t perform that action at this time.
0 commit comments