From 34284409ed944fe66e2b69025398e50e57e4a6ca Mon Sep 17 00:00:00 2001 From: bspeice Date: Fri, 18 Oct 2013 17:45:19 -0400 Subject: [PATCH] Slight logic modification to the listLots() unit test --- src/com/uncc/gameday/registration/test/RESTTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/uncc/gameday/registration/test/RESTTest.java b/src/com/uncc/gameday/registration/test/RESTTest.java index 864a542..829b607 100644 --- a/src/com/uncc/gameday/registration/test/RESTTest.java +++ b/src/com/uncc/gameday/registration/test/RESTTest.java @@ -36,7 +36,7 @@ public class RESTTest extends AndroidTestCase { public void testFetchLots() { RegistrationClient rc = new RegistrationClient(this.mContext); List lots = rc.listLots(); - assertFalse((lots.size() == 0)); + assertTrue((lots.size() > 0)); } }