Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
fix build failure (#1180)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzc850612 authored and darrenj committed Apr 29, 2019
1 parent 07b9c85 commit 6e5c1c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Microsoft.Bot.Builder.Skills.Tests.Mocks
{
public class MockBot : IBot
{
public Task OnTurnAsync(ITurnContext turnContext, CancellationToken cancellationToken = default)
public Task OnTurnAsync(ITurnContext turnContext, CancellationToken cancellationToken = default(CancellationToken))
{
return Task.CompletedTask;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Bot.Builder.Skills.Tests.Mocks
{
public class MockBotFrameworkHttpAdapter : IBotFrameworkHttpAdapter
{
public Task ProcessAsync(HttpRequest httpRequest, HttpResponse httpResponse, IBot bot, CancellationToken cancellationToken = default)
public Task ProcessAsync(HttpRequest httpRequest, HttpResponse httpResponse, IBot bot, CancellationToken cancellationToken = default(CancellationToken))
{
return Task.CompletedTask;
}
Expand Down

0 comments on commit 6e5c1c2

Please sign in to comment.