aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-10-28 06:48:17 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-28 08:21:05 +0200
commit99bd6787eb3d099f196f8e696be23a6dbac82909 (patch)
tree67b3bf9e4498a73ef85d39aeea2520b057666f45 /tests
parent97cc3bfbcba9cbbf612f4c7e04b974816adae3e2 (diff)
downloadayatana-indicator-datetime-99bd6787eb3d099f196f8e696be23a6dbac82909.tar.gz
ayatana-indicator-datetime-99bd6787eb3d099f196f8e696be23a6dbac82909.tar.bz2
ayatana-indicator-datetime-99bd6787eb3d099f196f8e696be23a6dbac82909.zip
Remove the activation_url from the Appointment class
Diffstat (limited to 'tests')
-rw-r--r--tests/print-to.h5
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);