summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-04-07 18:23:26 -0400
committerAllen Winter <allen.winter@kdab.com>2021-04-11 09:22:17 -0400
commitc7dba837cfb51339b7603d5be381be0fd04b78ff (patch)
tree8f9d78dbe25ad3c934d05aa766214ddb88d7f1ce
parent51e2119bae07f86fa8dc9730c85860ec43f8055b (diff)
downloadlibical-git-3.10.tar.gz
src/test/libical-glib/comprehensive.py - fix parameter order3.10
patch by Milan Crha <mcrha@redhat.com>
-rwxr-xr-xsrc/test/libical-glib/comprehensive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/libical-glib/comprehensive.py b/src/test/libical-glib/comprehensive.py
index ff2804a8..94fdfb6f 100755
--- a/src/test/libical-glib/comprehensive.py
+++ b/src/test/libical-glib/comprehensive.py
@@ -224,7 +224,7 @@ def main():
assert(child_component.get_relcalid() == "relcalid for childEventTwo");
recurProperty = child_component.get_first_property(ICalGLib.PropertyKind.RRULE_PROPERTY);
- assert recurProperty.as_ical_string() == "RRULE:FREQ=DAILY;COUNT=5;INTERVAL=10\r\n";
+ assert recurProperty.as_ical_string() == "RRULE:FREQ=DAILY;INTERVAL=10;COUNT=5\r\n";
if (i != count-1):
child_component = parent.get_next_component(ICalGLib.ComponentKind.VEVENT_COMPONENT);