File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/TagLibSharp2.Tests/Ogg Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments