Этот коммит содержится в:
Chris
2017-10-30 11:57:24 -05:00
коммит произвёл GitHub
родитель 63df41b911
Коммит c5e8cb25ca
49 изменённых файлов: 96 добавлений и 184 удалений

Просмотреть файл

@@ -36,7 +36,7 @@ func TestCreateTask(t *testing.T) {
t.Fatal("Bad interval")
}
if task.Recurring != false {
if task.Recurring {
t.Fatal("should not reccur")
}
}
@@ -75,7 +75,7 @@ func TestCreateRecurringTask(t *testing.T) {
t.Fatal("Bad interval")
}
if task.Recurring != true {
if !task.Recurring {
t.Fatal("should reccur")
}