summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJames R. Barlow <jim@purplerock.ca>2019-06-19 01:35:11 -0700
committerJames R. Barlow <jim@purplerock.ca>2019-06-19 01:35:11 -0700
commit8f8c4f1d2f4612d9a324572b3b64577ea6c6abb1 (patch)
tree636aec083d6a0907b033f1932a013582f4631097 /tests
parentdea146cec9e7473026a385dc65400a3ed46848b6 (diff)
Revise PdfPermissions - shouldn't be a tuple when it's not ordered
Diffstat (limited to 'tests')
-rw-r--r--tests/test_pdf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pdf.py b/tests/test_pdf.py
index 9e63893..7c993eb 100644
--- a/tests/test_pdf.py
+++ b/tests/test_pdf.py
@@ -95,7 +95,7 @@ class TestPermissions:
)
def test_permissions_all_true_not_encrypted(self, trivial):
- assert all(trivial.allow)
+ assert all(trivial.allow.values())
class TestStreams: