Slight logic modification to the listLots() unit test

This commit is contained in:
bspeice 2013-10-18 17:45:19 -04:00
parent bb7f511649
commit 34284409ed

View File

@ -36,7 +36,7 @@ public class RESTTest extends AndroidTestCase {
public void testFetchLots() { public void testFetchLots() {
RegistrationClient rc = new RegistrationClient(this.mContext); RegistrationClient rc = new RegistrationClient(this.mContext);
List<ParkingLot> lots = rc.listLots(); List<ParkingLot> lots = rc.listLots();
assertFalse((lots.size() == 0)); assertTrue((lots.size() > 0));
} }
} }