File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -694,12 +694,13 @@ class AnnotationFlag(IntFlag):
694
694
DocumentInformationAttributes ,
695
695
EncryptionDictAttributes ,
696
696
FieldDictionaryAttributes ,
697
+ FileSpecificationDictionaryEntries ,
697
698
FilterTypeAbbreviations ,
698
699
FilterTypes ,
699
700
GoToActionArguments ,
700
701
GraphicsStateParameters ,
701
702
ImageAttributes ,
702
- FileSpecificationDictionaryEntries ,
703
+ InteractiveFormDictEntries ,
703
704
LzwFilterParameters ,
704
705
PageAttributes ,
705
706
PageLayouts ,
Original file line number Diff line number Diff line change @@ -30,11 +30,12 @@ def test_slash_prefix():
30
30
continue
31
31
32
32
assert constant_value .startswith ("/" )
33
- assert attr .replace ("_" , "" ).lower () == constant_value [1 :].lower ()
33
+ assert attr .replace ("_" , "" ).casefold () == constant_value [1 :].casefold ()
34
34
35
35
# There are a few exceptions that may be lowercase
36
36
if cls == GraphicsStateParameters and attr in ["ca" , "op" ]:
37
37
continue
38
+
38
39
assert pattern .match (constant_value )
39
40
40
41
You can’t perform that action at this time.
0 commit comments