diff --git a/test/WebSites/ActivatorWebSite/Controllers/RegularController.cs b/test/WebSites/ActivatorWebSite/Controllers/RegularController.cs index 208a549588..90bd1a80d6 100644 --- a/test/WebSites/ActivatorWebSite/Controllers/RegularController.cs +++ b/test/WebSites/ActivatorWebSite/Controllers/RegularController.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +using System.Threading.Tasks; using Microsoft.AspNet.Http; using Microsoft.AspNet.Mvc; @@ -8,13 +9,15 @@ namespace ActivatorWebSite { public class RegularController : Controller { - public void Index() + public async Task Index() { // This verifies that ModelState and Context are activated. if (ModelState.IsValid) { - Context.Response.WriteAsync("Hello world").Wait(); + await Context.Response.WriteAsync("Hello world"); } + + return new EmptyResult(); } } } \ No newline at end of file