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-09-04 21:05:46 +0200
commit8de74c65f2079e3d6b3fddab4034e39bcc3f1807 (patch)
tree7a85d55b4047125211ef63343d811fa4704abf93 /xmlsecurity
parentbb734eb18f209de94a3a189586e426f2ee06a012 (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 (cherry picked from commit 08dadbd90ec29011dc2367493f49c57d75f1e51b)
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 d037eb9a35fb..4e24e183ede3 100644
--- a/xmlsecurity/qa/unit/signing/signing.cxx
+++ b/xmlsecurity/qa/unit/signing/signing.cxx
@@ -320,7 +320,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()