get rid of compile error in dotnet 5.0

This commit is contained in:
Lei Ni 2021-03-23 19:20:30 +08:00
Родитель 97b877cada
Коммит 4c5490e6b6
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -85,10 +85,8 @@ namespace AutoRest.AzureResourceSchema.Tests
jsonSchema.AddPropertyWithOverwrite("type", new JsonSchema().AddProperty("bar", new JsonSchema()), true);
jsonSchema.AddPropertyWithOverwrite("name", new JsonSchema().AddProperty("baz", new JsonSchema()), true);
var expectedPropertyNames = new string[] { "type", "name" };
Assert.True(jsonSchema.Properties.Count == 2);
Assert.True(expectedPropertyNames.All(jsonSchema.Properties.Select(property => property.Key).Contains));
Assert.Equal(new List<string>() { "type", "name" }, jsonSchema.Properties.Keys);
}
}
}