@@ -20,7 +20,7 @@ public void DecodesWikipediaExample()
2020 l(DId<j@<? 3r@:F % a + D58'ATD4$Bl@l3De:,-DJs`8ARoFb/0JMK@qB4^F!,R<AKZ&-DfTqBG%G
2121 > uD.RTpAKYo'+CT/5+Cei#DII?(E,9)oF*2M7/c~>" ) ;
2222
23- var result = filter . Decode ( bytes , dictionary , 0 ) ;
23+ var result = filter . Decode ( bytes , dictionary , TestFilterProvider . Instance , 0 ) ;
2424
2525#if ! NET
2626 string text = Encoding . ASCII . GetString ( result . ToArray ( ) ) ;
@@ -39,7 +39,7 @@ public void ReplacesZWithEmptyBytes()
3939 {
4040 var bytes = Encoding . ASCII . GetBytes ( "9jqo^zBlbD-" ) ;
4141
42- var result = filter . Decode ( bytes , dictionary , 1 ) ;
42+ var result = filter . Decode ( bytes , dictionary , TestFilterProvider . Instance , 1 ) ;
4343
4444#if ! NET
4545 string text = Encoding . ASCII . GetString ( result . ToArray ( ) ) ;
@@ -55,7 +55,7 @@ public void ZInMiddleOf5CharacterSequenceThrows()
5555 {
5656 var bytes = Encoding . ASCII . GetBytes ( "qjzqo^" ) ;
5757
58- Action action = ( ) => filter . Decode ( bytes , dictionary , 0 ) ;
58+ Action action = ( ) => filter . Decode ( bytes , dictionary , TestFilterProvider . Instance , 0 ) ;
5959
6060 Assert . Throws < InvalidOperationException > ( action ) ;
6161 }
@@ -65,7 +65,7 @@ public void SingleCharacterLastThrows()
6565 {
6666 var bytes = Encoding . ASCII . GetBytes ( "9jqo^B" ) ;
6767
68- Action action = ( ) => filter . Decode ( bytes , dictionary , 1 ) ;
68+ Action action = ( ) => filter . Decode ( bytes , dictionary , TestFilterProvider . Instance , 1 ) ;
6969
7070 Assert . Throws < ArgumentOutOfRangeException > ( action ) ;
7171 }
@@ -110,7 +110,7 @@ public void DecodesEncodedPdfContent()
110110F*22=@:F%a+=SF4C'moi+=Li?EZeh0FD)e-@<>p#@;]TuBl.9kATKCFGA(],AKYo5BOu4*+CT;%+C#7pF_Pr+@VfTuDf0B:+=SF4C'moi+=
111111Li?EZek1DKKT1F`2DD/TboKAKY](@:s.m/h%oBC'mC/$>""*cF*)G6@;Q?_DIdZpC&~>" ;
112112
113- var result = filter . Decode ( Encoding . ASCII . GetBytes ( input ) , dictionary , 0 ) ;
113+ var result = filter . Decode ( Encoding . ASCII . GetBytes ( input ) , dictionary , TestFilterProvider . Instance , 0 ) ;
114114
115115#if ! NET
116116 string text = Encoding . ASCII . GetString ( result . ToArray ( ) ) ;
@@ -134,7 +134,7 @@ public void DecodesEncodedPdfContentMissingEndOfDataSymbol()
134134F*22=@:F%a+=SF4C'moi+=Li?EZeh0FD)e-@<>p#@;]TuBl.9kATKCFGA(],AKYo5BOu4*+CT;%+C#7pF_Pr+@VfTuDf0B:+=SF4C'moi+=
135135Li?EZek1DKKT1F`2DD/TboKAKY](@:s.m/h%oBC'mC/$>""*cF*)G6@;Q?_DIdZpC&" ;
136136
137- var result = filter . Decode ( Encoding . ASCII . GetBytes ( input ) , dictionary , 0 ) ;
137+ var result = filter . Decode ( Encoding . ASCII . GetBytes ( input ) , dictionary , TestFilterProvider . Instance , 0 ) ;
138138
139139#if ! NET
140140 string text = Encoding . ASCII . GetString ( result . ToArray ( ) ) ;
@@ -154,7 +154,7 @@ public void DecodeParallel()
154154 {
155155 var bytes = Encoding . ASCII . GetBytes ( "9jqo^zBlbD-" ) ;
156156
157- var result = filter . Decode ( bytes , dictionary , 1 ) ;
157+ var result = filter . Decode ( bytes , dictionary , TestFilterProvider . Instance , 1 ) ;
158158
159159#if ! NET
160160 string text = Encoding . ASCII . GetString ( result . ToArray ( ) ) ;
@@ -176,7 +176,7 @@ public void DecodeParallel()
176176F*22=@:F%a+=SF4C'moi+=Li?EZeh0FD)e-@<>p#@;]TuBl.9kATKCFGA(],AKYo5BOu4*+CT;%+C#7pF_Pr+@VfTuDf0B:+=SF4C'moi+=
177177Li?EZek1DKKT1F`2DD/TboKAKY](@:s.m/h%oBC'mC/$>""*cF*)G6@;Q?_DIdZpC&~>" ;
178178
179- var result = filter . Decode ( Encoding . ASCII . GetBytes ( input ) , dictionary , 0 ) ;
179+ var result = filter . Decode ( Encoding . ASCII . GetBytes ( input ) , dictionary , TestFilterProvider . Instance , 0 ) ;
180180
181181#if ! NET
182182 string text = Encoding . ASCII . GetString ( result . ToArray ( ) ) ;
0 commit comments