summaryrefslogtreecommitdiff
path: root/sw/qa/python
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/python')
-rw-r--r--sw/qa/python/check_xmodel.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/qa/python/check_xmodel.py b/sw/qa/python/check_xmodel.py
index bcceed6acd77..5b1f8722016b 100644
--- a/sw/qa/python/check_xmodel.py
+++ b/sw/qa/python/check_xmodel.py
@@ -34,7 +34,8 @@ class TestXModel(unittest.TestCase):
p2 = PropertyValue(Name="SuggestedSaveAsDir", Value="/my/dir")
p3 = PropertyValue(Name="LockContentExtraction", Value=True)
p4 = PropertyValue(Name="LockExport", Value=True)
- xDoc.setArgs([p1, p2, p3, p4])
+ p5 = PropertyValue(Name="LockPrint", Value=True)
+ xDoc.setArgs([p1, p2, p3, p4, p5])
# Make sure that all properties are returned with getArgs()
args = xDoc.getArgs()
@@ -42,6 +43,7 @@ class TestXModel(unittest.TestCase):
self.assertTrue(p2 in args)
self.assertTrue(p3 in args)
self.assertTrue(p4 in args)
+ self.assertTrue(p5 in args)
xDoc.close(True)