Skip to content

Commit

Permalink
Fix up test code.
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrusNajmabadi committed Nov 11, 2018
1 parent 4aef67f commit 71efab2
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -3,6 +3,7 @@
using System;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CodeGeneration;
using Microsoft.CodeAnalysis.Formatting;
using Microsoft.CodeAnalysis.Test.Utilities;
using Roslyn.Test.Utilities;
using Roslyn.Utilities;
Expand Down Expand Up @@ -710,7 +711,7 @@ public async Task FormatMetadataAsSource()
{
var file = await context.GenerateSourceAsync("System.Console", project: context.DefaultProject);
var document = context.GetDocument(file);
await Formatting.Formatter.FormatAsync(document);
await Formatter.FormatAsync(document);
}
}

Expand Down

0 comments on commit 71efab2

Please sign in to comment.