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 ec332c0 commit e8d47bfCopy full SHA for e8d47bf
Tests/Botticelli.Audio.Tests/UniversalLowQualityConvertorTests.cs
@@ -27,11 +27,7 @@ public void ConvertMp3ToOpusTest()
27
AssertOutcome(outcome);
28
}
29
30
- private static void AssertOutcome(byte[] outcome)
31
- {
32
- Assert.That(outcome != null);
33
- Assert.That(outcome.Any());
34
- }
+ private static void AssertOutcome(byte[]? outcome) => Assert.That(outcome != null && outcome.Any());
35
36
private byte[] GetOutcome(AudioInfo audioInfo)
37
{
0 commit comments