Skip to content

Commit b75a5ce

Browse files
committed
Fix whitespace formatting in WavFileTests
1 parent 7204ba4 commit b75a5ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/TagLibSharp2.Tests/Riff/WavFileTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ static BinaryData CreateWavWithCueChunk ()
302302
builder.AddStringLatin1 ("cue ");
303303
builder.AddUInt32LE (28); // size: 4 (count) + 24 (one cue point)
304304
builder.AddUInt32LE (1); // 1 cue point
305-
// Cue point: ID(4) + Position(4) + ChunkID(4) + ChunkStart(4) + BlockStart(4) + SampleOffset(4)
305+
// Cue point: ID(4) + Position(4) + ChunkID(4) + ChunkStart(4) + BlockStart(4) + SampleOffset(4)
306306
builder.AddUInt32LE (1); // ID
307307
builder.AddUInt32LE (0); // Position
308308
builder.AddStringLatin1 ("data"); // Chunk ID
@@ -511,7 +511,7 @@ static BinaryData CreateWavWithExtensibleFormat ()
511511
builder.AddUInt16LE (22); // cbSize
512512
builder.AddUInt16LE (16); // Valid bits per sample
513513
builder.AddUInt32LE (0x3F); // Channel mask (5.1: FL|FR|FC|LFE|BL|BR)
514-
// SubFormat GUID for PCM
514+
// SubFormat GUID for PCM
515515
byte[] subFormat = [0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00,
516516
0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71];
517517
builder.Add (subFormat);

0 commit comments

Comments
 (0)