From 90aa09ae17f0d6aeeebbce94d1813355152ee70c Mon Sep 17 00:00:00 2001 From: bspeice Date: Fri, 18 Oct 2013 15:41:36 -0400 Subject: [PATCH] Add some basic fixes to the AlertDBTest code Interfaces are picky... --- src/com/uncc/gameday/alerts/test/AlertDBTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/uncc/gameday/alerts/test/AlertDBTest.java b/src/com/uncc/gameday/alerts/test/AlertDBTest.java index 1fd8ed2..b3cc32d 100644 --- a/src/com/uncc/gameday/alerts/test/AlertDBTest.java +++ b/src/com/uncc/gameday/alerts/test/AlertDBTest.java @@ -1,5 +1,6 @@ package com.uncc.gameday.alerts.test; +import java.util.ArrayList; import java.util.Date; import java.util.List; @@ -54,7 +55,7 @@ public class AlertDBTest extends AndroidTestCase { Date d = new Date(); Alert a1 = new Alert(d, "testPersistMultiple", false); Alert a2 = new Alert(d, "testPersistMultiple", false); - List l = new List(); + List l = new ArrayList(); l.add(a1); l.add(a2);