crypt32/tests: Add a trailing '\n' to an ok() call.
This commit is contained in:
parent
961d65ab30
commit
80ef97be1a
|
@ -231,7 +231,7 @@ static void testCTLProperties(void)
|
||||||
ok(ret, "CertGetCTLContextProperty failed: %08x\n", GetLastError());
|
ok(ret, "CertGetCTLContextProperty failed: %08x\n", GetLastError());
|
||||||
ret = CertGetCTLContextProperty(ctl, CERT_ACCESS_STATE_PROP_ID, &access,
|
ret = CertGetCTLContextProperty(ctl, CERT_ACCESS_STATE_PROP_ID, &access,
|
||||||
&size);
|
&size);
|
||||||
ok(ret, "CertGetCTLContextProperty failed: %08x", GetLastError());
|
ok(ret, "CertGetCTLContextProperty failed: %08x\n", GetLastError());
|
||||||
ok(!(access & CERT_ACCESS_STATE_WRITE_PERSIST_FLAG),
|
ok(!(access & CERT_ACCESS_STATE_WRITE_PERSIST_FLAG),
|
||||||
"Didn't expect a persisted cert\n");
|
"Didn't expect a persisted cert\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue