diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/print-to.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/print-to.h b/tests/print-to.h index 652da52..7cd6c2a 100644 --- a/tests/print-to.h +++ b/tests/print-to.h @@ -1,5 +1,6 @@ /* * Copyright 2015 Canonical Ltd. + * Copyright 2021 Robert Tari * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published @@ -15,6 +16,7 @@ * * Authors: * Charles Kerr <charles.kerr@canonical.com> + * Robert Tari <robert@tari.in> */ #ifndef INDICATOR_DATETIME_TESTS_PRINT_TO @@ -55,8 +57,7 @@ PrintTo(const Appointment& appointment, std::ostream* os) *os << "{uid:'" << appointment.uid << "'}" << "{color:'" << appointment.color << "'}" - << "{summary:'" << appointment.summary << "'}" - << "{activation_url:'" << appointment.activation_url << "'}"; + << "{summary:'" << appointment.summary << "'}"; *os << "{begin:"; PrintTo(appointment.begin, os); |