We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee1a6c commit 9a9bdeeCopy full SHA for 9a9bdee
test/Microsoft.OpenApi.Readers.Tests/OpenApiReaderTests/OpenApiStreamReaderTests.cs
@@ -2,6 +2,7 @@
2
// Licensed under the MIT license.
3
4
using System.IO;
5
+using System.Threading.Tasks;
6
using Xunit;
7
8
namespace Microsoft.OpenApi.Readers.Tests.OpenApiReaderTests
@@ -29,7 +30,7 @@ public void StreamShouldNotCloseIfLeaveStreamOpenSettingEqualsTrue()
29
30
}
31
32
[Fact]
- public async void StreamShouldNotBeDisposedIfLeaveStreamOpenSettingIsTrue()
33
+ public async Task StreamShouldNotBeDisposedIfLeaveStreamOpenSettingIsTrue()
34
{
35
var memoryStream = new MemoryStream();
36
using var fileStream = Resources.GetStream(Path.Combine(SampleFolderPath, "petStore.yaml"));
0 commit comments