summaryrefslogtreecommitdiff
path: root/sw/qa/python/check_xmodel.py
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/python/check_xmodel.py')
-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 c5374c03c350..a71fdf9bc142 100644
--- a/sw/qa/python/check_xmodel.py
+++ b/sw/qa/python/check_xmodel.py
@@ -32,12 +32,14 @@ class TestXModel(unittest.TestCase):
p1 = PropertyValue(Name="SuggestedSaveAsName", Value="prettyFileName")
p2 = PropertyValue(Name="SuggestedSaveAsDir", Value="/my/dir")
- xDoc.setArgs([p1, p2])
+ p3 = PropertyValue(Name="LockContentExtraction", Value=True)
+ xDoc.setArgs([p1, p2, p3])
# Make sure that all properties are returned with getArgs()
args = xDoc.getArgs()
self.assertTrue(p1 in args)
self.assertTrue(p2 in args)
+ self.assertTrue(p3 in args)
xDoc.close(True)