Skip to content

Commit 5ccb256

Browse files
committed
Fix whitespace formatting in OggOpusFileTests
1 parent 5f9da96 commit 5ccb256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TagLibSharp2.Tests/Ogg/OggOpusFileTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ public void Read_OpusHeadTooShort_ReturnsFailure ()
782782
builder.AddUInt16LE (312); // Pre-skip
783783
builder.AddUInt32LE (48000); // Input sample rate
784784
builder.AddUInt16LE (0); // Output gain
785-
// Missing channel mapping family byte at position 18
785+
// Missing channel mapping family byte at position 18
786786

787787
var page = TestBuilders.Ogg.CreatePage (builder.ToArray (), 0, OggPageFlags.BeginOfStream);
788788
var result = OggOpusFile.Read (page);
@@ -815,7 +815,7 @@ public void Read_ChannelMappingFamily1_MissingMappingTable_ReturnsFailure ()
815815
builder.AddUInt32LE (48000);
816816
builder.AddUInt16LE (0);
817817
builder.Add ((byte)1); // Mapping family 1 (requires table)
818-
// Missing: stream count, coupled count, and 4-byte mapping table
818+
// Missing: stream count, coupled count, and 4-byte mapping table
819819

820820
var page = TestBuilders.Ogg.CreatePage (builder.ToArray (), 0, OggPageFlags.BeginOfStream);
821821
var result = OggOpusFile.Read (page);

0 commit comments

Comments
 (0)