summaryrefslogtreecommitdiff
path: root/smoketest/data
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-06-07 20:15:25 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-07 20:29:35 +0200
commitae0e295f6063e63d90561fab8c856685ce2c94c7 (patch)
tree1ed3665ad48cb1943c8b19eb06bfbb366c121b94 /smoketest/data
parentdd9dba52f3db38ecf9e6b5c5150219e59579d54b (diff)
smoketest: unbreak after recent Extension changes
(regression from a714cf18b1c6cadae93df92376a11aeb98b65418) Change-Id: Iaf772aa1960bad1ed6b317245867f17a88f6ccd7
Diffstat (limited to 'smoketest/data')
-rw-r--r--smoketest/data/Basic/Standard/Test_10er.xml2
-rw-r--r--smoketest/data/Basic/Standard/Test_Ext.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/data/Basic/Standard/Test_10er.xml b/smoketest/data/Basic/Standard/Test_10er.xml
index bd774b47b764..41d06c7e8f9a 100644
--- a/smoketest/data/Basic/Standard/Test_10er.xml
+++ b/smoketest/data/Basic/Standard/Test_10er.xml
@@ -173,7 +173,7 @@ DIM nStrPos as Long
CompatibilityMode(true)
nStrPos = InStrRev (sDocURL, &quot;/&quot; )
CompatibilityMode(false)
- sExtensionURL = Left (sDocURL, nStrPos)
+ sExtensionURL = Left (sDocURL, nStrPos) + &quot;../Extension/&quot; + cExtensionFileName
GlobalTestLog = OpenLogDat (sLogFileName)
call WriteTestSequence
diff --git a/smoketest/data/Basic/Standard/Test_Ext.xml b/smoketest/data/Basic/Standard/Test_Ext.xml
index 364a6a68402a..2984ff67c33a 100644
--- a/smoketest/data/Basic/Standard/Test_Ext.xml
+++ b/smoketest/data/Basic/Standard/Test_Ext.xml
@@ -64,7 +64,7 @@ Sub TestExtensions
&apos;XExtensionManager only affect the user installation. To modify the share installation one would pass &quot;share&quot;.
Dim props() as Object
- ext_mgr.addExtension(sExtensionURL + cExtensionFileName, props, &quot;user&quot;, obj_null, cmdEnv)
+ ext_mgr.addExtension(sExtensionURL, props, &quot;user&quot;, obj_null, cmdEnv)
&apos;Check if the extension has been added by creating a service which is contained in the extension.
oTestExtension = createUnoService(cUnoSmoketestTestExtension)