From 134e0bf442b4d9d535c2fb9021f46039471426d4 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Mon, 11 Feb 2013 15:03:51 -0800 Subject: [PATCH] Fixed a bug in the repeating task tests --- tests/src/com/todoroo/astrid/repeats/NewRepeatTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/com/todoroo/astrid/repeats/NewRepeatTests.java b/tests/src/com/todoroo/astrid/repeats/NewRepeatTests.java index 6ee048098..70de96bc1 100644 --- a/tests/src/com/todoroo/astrid/repeats/NewRepeatTests.java +++ b/tests/src/com/todoroo/astrid/repeats/NewRepeatTests.java @@ -146,7 +146,7 @@ public class NewRepeatTests extends DatabaseTestCase { String result = rrule.toIcal(); if (fromCompletion) result = result + ";FROM=COMPLETION"; - t.setValue(Task.RECURRENCE, rrule.toIcal()); + t.setValue(Task.RECURRENCE, result); taskDao.save(t); waitAndSync();