Index: /trunk/test/integration/TaskSearchServiceTests.groovy
===================================================================
--- /trunk/test/integration/TaskSearchServiceTests.groovy	(revision 744)
+++ /trunk/test/integration/TaskSearchServiceTests.groovy	(revision 745)
@@ -215,59 +215,5 @@
         assert taskSearchService.getPersonsTasks(params, Person.get(2)).totalCount == 2 // taskA and taskB.
 
-    } // testGetTasks()
-
-    void testGetBudgetTasks() {
-
-        def tasks
-        def params = [:]
-        def today = dateUtilService.today
-        def yesterday = dateUtilService.yesterday
-        def tomorrow = dateUtilService.tomorrow
-        def unplanned = TaskBudgetStatus.read(1)
-        def planned = TaskBudgetStatus.read(2)
-
-        assert planned != null
-        assert unplanned != null
-
-        // Default is to return planned.
-        // TaskA and taskB should be unplanned and therefore not returned.
-        tasks = taskSearchService.getBudgetTasks(params)
-        assert tasks.totalCount == 0
-        tasks = taskSearchService.getBudgetTasks(params, planned)
-        assert tasks.totalCount == 0
-
-        tasks = taskSearchService.getBudgetTasks(params, unplanned)
-        assert tasks.totalCount == taskCount
-        assert tasks.contains(taskA)
-        assert tasks.contains(taskB)
-
-        // Planned tasks are returned.
-        taskA.taskBudgetStatus = planned
-        taskA.save(flush:true)
-        tasks = taskSearchService.getBudgetTasks(params, planned)
-        assert tasks.totalCount == 1
-        assert tasks.contains(taskA)
-
-        // Tasks are returned when dates and budget status are specified.
-        tasks = taskSearchService.getBudgetTasks(params, planned, today, tomorrow)
-        assert tasks.totalCount == 1
-        assert tasks.contains(taskA)
-        tasks = taskSearchService.getBudgetTasks(params, unplanned, today, tomorrow)
-        assert tasks.totalCount == 1
-        assert tasks.contains(taskB)
-
-        // No tasks for yesterday
-        tasks = taskSearchService.getBudgetTasks(params, null, yesterday, today)
-        assert tasks.totalCount == 0
-
-        // Tasks that span today are returned.
-        taskA.targetStartDate = yesterday
-        taskA.targetCompletionDate = tomorrow+2
-        taskA.save(flush:true)
-        tasks = taskSearchService.getBudgetTasks(params, planned, today, tomorrow)
-        assert tasks.totalCount == 1
-        assert tasks.contains(taskA)
-
-    } // testGetBudgetTasks()
+    } // testGetPersonsTasks()
 
 } // end class
