Skip to content

Commit e8d47bf

Browse files
author
Igor Evdokimov
committed
- fix
1 parent ec332c0 commit e8d47bf

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Tests/Botticelli.Audio.Tests/UniversalLowQualityConvertorTests.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ public void ConvertMp3ToOpusTest()
2727
AssertOutcome(outcome);
2828
}
2929

30-
private static void AssertOutcome(byte[] outcome)
31-
{
32-
Assert.That(outcome != null);
33-
Assert.That(outcome.Any());
34-
}
30+
private static void AssertOutcome(byte[]? outcome) => Assert.That(outcome != null && outcome.Any());
3531

3632
private byte[] GetOutcome(AudioInfo audioInfo)
3733
{

0 commit comments

Comments
 (0)