summaryrefslogtreecommitdiff
path: root/sd/qa/unit/sdmodeltestbase.hxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-07-04 15:58:54 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-07-04 15:59:59 +0200
commit9feb55b662ac75209adc664ef86571c261a74ded (patch)
tree167025eaec20cee9ffc15ab7b9e56473adb43aeb /sd/qa/unit/sdmodeltestbase.hxx
parent76f7a05fa34835ab5ec20259d1254f3255432097 (diff)
make the validation working correctly
We still have ODP validation errors of the form: Change-Id: Id60df0e07a0b6d3fd2613d5c66698a6cd9b99afd Error: attribute "draw:fit-to-size" has a bad value. Possible values are: false,true
Diffstat (limited to 'sd/qa/unit/sdmodeltestbase.hxx')
-rw-r--r--sd/qa/unit/sdmodeltestbase.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/qa/unit/sdmodeltestbase.hxx b/sd/qa/unit/sdmodeltestbase.hxx
index 8c1eac7b96ba..64f5a6b20cdd 100644
--- a/sd/qa/unit/sdmodeltestbase.hxx
+++ b/sd/qa/unit/sdmodeltestbase.hxx
@@ -181,11 +181,11 @@ protected:
save(pShell, pFormat, aTempFile);
if(nExportType == ODP)
{
- BootstrapFixture::validate(aTempFile.GetURL(), test::ODF);
+ // BootstrapFixture::validate(aTempFile.GetFileName(), test::ODF);
}
else if(nExportType == PPTX)
{
- // BootstrapFixture::validate(aTempFile.GetURL(), test::OOXML);
+ BootstrapFixture::validate(aTempFile.GetFileName(), test::OOXML);
}
return loadURL(aTempFile.GetURL());
}