summaryrefslogtreecommitdiff
path: root/sw/qa/python/check_indexed_property_values.py
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/python/check_indexed_property_values.py')
-rw-r--r--sw/qa/python/check_indexed_property_values.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/sw/qa/python/check_indexed_property_values.py b/sw/qa/python/check_indexed_property_values.py
index ceaf82a6cac6..d6d314adc894 100644
--- a/sw/qa/python/check_indexed_property_values.py
+++ b/sw/qa/python/check_indexed_property_values.py
@@ -17,12 +17,9 @@
'''
import unittest
-import unohelper
import uno
from org.libreoffice.unotest import UnoInProcess
from com.sun.star.beans import PropertyValue
-from com.sun.star.container import XIndexContainer
-from org.libreoffice.unotest import OfficeConnection
from com.sun.star.lang import IllegalArgumentException
from com.sun.star.lang import IndexOutOfBoundsException
@@ -53,7 +50,6 @@ class CheckIndexedPropertyValues(unittest.TestCase):
p3 = PropertyValue(Name="Peter", Value="FamilyGuy")
prop3 = uno.Any("[]com.sun.star.beans.PropertyValue", (p3,))
- t = xCont.getElementType()
self.assertEqual(0, len(xCont), "Initial container is not empty")
uno.invoke(xCont, "insertByIndex", (0, prop1))