Slight logic modification to the listLots() unit test

master
bspeice 2013-10-18 17:45:19 -04:00
parent bb7f511649
commit 34284409ed
1 changed files with 1 additions and 1 deletions

View File

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