Skip to content

Commit

Permalink
Merge pull request grpc#7728 from apolcyn/clean_up_sanity_test
Browse files Browse the repository at this point in the history
clean up sanity test
  • Loading branch information
kpayson64 authored Aug 15, 2016
2 parents 92b9d21 + 7f8456e commit ec96e5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/csharp/Grpc.Core.Tests/SanityTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ public class SanityTest
[Test]
public void TestsJsonUpToDate()
{
Dictionary<string, List<string>> discoveredTests = DiscoverAllTestClasses();
Dictionary<string, List<string>> testsFromFile
= JsonConvert.DeserializeObject<Dictionary<string, List<string>>>(ReadTestsJson());
var discoveredTests = DiscoverAllTestClasses();
var testsFromFile
= JsonConvert.DeserializeObject<Dictionary<string, List<string>>>(ReadTestsJson());

Assert.AreEqual(discoveredTests, testsFromFile);
}
Expand Down

0 comments on commit ec96e5b

Please sign in to comment.