diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-08-23 16:12:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-08-23 16:12:19 +0200 |
commit | 7aaa3fe571810d4c68d974353d4b171453b12362 (patch) | |
tree | 00e1aefdd103138eef2bc9f54ab5aac6336f59f9 /sc/qa/unit/parallelism.cxx | |
parent | 11f81f2ba98eba4b34d9cc46a962aac2a52e0a0e (diff) |
Make ScBootstrapFixture::createFileURL generate properly encoded URLs
Requires the rsBaseString arg to the ScBootstrapFixture ctor to consitently be
passed as a relative path without a leading slash.
Change-Id: Ieff38d465b0053fdae42acc4babfb34d1a4827bd
Diffstat (limited to 'sc/qa/unit/parallelism.cxx')
-rw-r--r-- | sc/qa/unit/parallelism.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/parallelism.cxx b/sc/qa/unit/parallelism.cxx index 5876c83e9b91..1bd725ad38b1 100644 --- a/sc/qa/unit/parallelism.cxx +++ b/sc/qa/unit/parallelism.cxx @@ -60,7 +60,7 @@ private: }; ScParallelismTest::ScParallelismTest() - : ScBootstrapFixture( "/sc/qa/unit/data" ) + : ScBootstrapFixture( "sc/qa/unit/data" ) { } |