diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-09-07 21:26:02 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-09-07 21:44:57 +0200 |
commit | 01b0d6da7ffdbd0eeea601020329c82fa1b37c11 (patch) | |
tree | 859274a562f3afdd43271a7804c3880f99b9a969 /dbaccess | |
parent | 01cc6e5107c706760939c2331ca57247bd02cb77 (diff) |
unotest.py: refactor confusing mess of openDoc functions
Change-Id: I148332c639510c55dea2d09bc7aa695708fbf34c
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/qa/python/fdo84315.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/qa/python/fdo84315.py b/dbaccess/qa/python/fdo84315.py index 03acc0a92e2f..f58b16f51309 100644 --- a/dbaccess/qa/python/fdo84315.py +++ b/dbaccess/qa/python/fdo84315.py @@ -20,7 +20,7 @@ class Fdo84315(unittest.TestCase): cls._uno = UnoInProcess() cls._uno.setUp() workdir = os.environ[ "WORKDIR_FOR_BUILD" ] - cls._xDoc = cls._uno.openDoc(workdir + "/CppunitTest/fdo84315.odb") + cls._xDoc = cls._uno.openDocFromAbsolutePath(workdir + "/CppunitTest/fdo84315.odb") @classmethod def tearDownClass(cls): |