Skip to content
Snippets Groups Projects
Commit ec96e5b2 authored by kpayson64's avatar kpayson64 Committed by GitHub
Browse files

Merge pull request #7728 from apolcyn/clean_up_sanity_test

clean up sanity test
parents 92b9d21f 7f8456e3
No related branches found
No related tags found
No related merge requests found
......@@ -58,9 +58,9 @@ namespace Grpc.Core.Tests
[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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment