summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-03-16 15:13:51 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-03-16 15:46:54 +0100
commit08dadbd90ec29011dc2367493f49c57d75f1e51b (patch)
tree5c1014ed3d5c6d4d9210f71968c1bc10af157863 /xmlsecurity
parent2a5bb8f7d76079a52d8b5fb83911f690a13b7ae5 (diff)
CppunitTest_xmlsecurity_signing: fix typo in testODFBroken()
On a system where the certificate can be validated, the expected result is OK, not PARTIAL_OK (copy&paste problem from OOXML). Change-Id: I1b52921498de24c9a14a780bf48b791ec1e0c706
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/qa/unit/signing/signing.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/qa/unit/signing/signing.cxx b/xmlsecurity/qa/unit/signing/signing.cxx
index 2ee8e33bb0db..0090015121dd 100644
--- a/xmlsecurity/qa/unit/signing/signing.cxx
+++ b/xmlsecurity/qa/unit/signing/signing.cxx
@@ -322,7 +322,7 @@ void SigningTest::testODFGood()
static_cast<std::underlying_type<SignatureState>::type>(nActual))
.getStr()),
(nActual == SignatureState::NOTVALIDATED
- || nActual == SignatureState::PARTIAL_OK));
+ || nActual == SignatureState::OK));
}
void SigningTest::testODFBroken()