Skip to content

Commit

Permalink
Fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
msft-shahins committed Dec 12, 2016
1 parent 527c69c commit 3dcb941
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>CS1998</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand Down
2 changes: 1 addition & 1 deletion CSharp/Tests/Microsoft.Bot.Builder.Tests/DataStoreTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public SampleBotData()
[TestClass]
public class InMemoryStoreTests : BaseDataStoreTests
{
public virtual IBotDataStore<BotData> GetTestCaseDataStore()
public override IBotDataStore<BotData> GetTestCaseDataStore()
{
return new InMemoryDataStore();
}
Expand Down

0 comments on commit 3dcb941

Please sign in to comment.