diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-26 00:29:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-14 17:27:42 +0200 |
| commit | bd806060787e0d6d3433122040810622e3b677b7 (patch) | |
| tree | 0bfc5a718f8b9176eaf94d7859fe9df7a00d4ad2 /test | |
| parent | cdf3e79adcb4446390c5b5543198e2c7c1b16f32 (diff) | |
Add new OK type of verification note.
Diffstat (limited to 'test')
| -rw-r--r-- | test/stream_operators.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/stream_operators.cc b/test/stream_operators.cc index 87949e84..4895076a 100644 --- a/test/stream_operators.cc +++ b/test/stream_operators.cc @@ -208,6 +208,9 @@ ostream& dcp::operator<< (ostream& s, VerificationNote::Type t) { switch (t) { + case VerificationNote::Type::OK: + s << "check"; + break; case VerificationNote::Type::ERROR: s << "error"; break; |
