mirror of
https://github.com/bspeice/UNCCGameDay-Test
synced 2024-11-13 19:48:21 -05:00
Add some basic fixes to the AlertDBTest code
Interfaces are picky...
This commit is contained in:
parent
82ba42ec68
commit
90aa09ae17
@ -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<Alert>();
|
||||
List<Alert> l = new ArrayList<Alert>();
|
||||
l.add(a1);
|
||||
l.add(a2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user