File tree 1 file changed +2
-1
lines changed
tests/Magick.NET.Tests/Formats/Pdf/PdfReadDefinesTests 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,11 @@ public void ShouldNotSetAnyDefine()
17
17
using var image = new MagickImage ( ) ;
18
18
image . Settings . SetDefines ( new PdfReadDefines ( ) ) ;
19
19
20
+ Assert . Null ( image . Settings . GetDefine ( "authenticate" ) ) ;
20
21
Assert . Null ( image . Settings . GetDefine ( MagickFormat . Pdf , "fit-page" ) ) ;
21
22
Assert . Null ( image . Settings . GetDefine ( MagickFormat . Pdf , "hide-annotations" ) ) ;
22
23
Assert . Null ( image . Settings . GetDefine ( MagickFormat . Pdf , "interpolate" ) ) ;
23
- Assert . Null ( image . Settings . GetDefine ( "authenticate ") ) ;
24
+ Assert . Null ( image . Settings . GetDefine ( MagickFormat . Pdf , "no-identifier ") ) ;
24
25
Assert . Null ( image . Settings . GetDefine ( MagickFormat . Pdf , "use-cropbox" ) ) ;
25
26
Assert . Null ( image . Settings . GetDefine ( MagickFormat . Pdf , "use-trimbox" ) ) ;
26
27
}
You can’t perform that action at this time.
0 commit comments