Fixed test.
Project: http://git-wip-us.apache.org/repos/asf/usergrid-swift/repo Commit: http://git-wip-us.apache.org/repos/asf/usergrid-swift/commit/39568c0e Tree: http://git-wip-us.apache.org/repos/asf/usergrid-swift/tree/39568c0e Diff: http://git-wip-us.apache.org/repos/asf/usergrid-swift/diff/39568c0e Branch: refs/heads/master Commit: 39568c0eb271c42e922285dfd17c47d31376e17b Parents: 2202326 Author: Robert Walsh <[email protected]> Authored: Wed Sep 14 09:21:41 2016 -0500 Committer: Robert Walsh <[email protected]> Committed: Wed Sep 14 09:21:41 2016 -0500 ---------------------------------------------------------------------- Tests/GET_Tests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/usergrid-swift/blob/39568c0e/Tests/GET_Tests.swift ---------------------------------------------------------------------- diff --git a/Tests/GET_Tests.swift b/Tests/GET_Tests.swift index 2b0331f..76ca828 100644 --- a/Tests/GET_Tests.swift +++ b/Tests/GET_Tests.swift @@ -102,8 +102,8 @@ class GET_Tests: XCTestCase { XCTAssertTrue(NSThread.isMainThread()) XCTAssertTrue(nextPageResponse.ok) XCTAssertNotNil(nextPageResponse) - XCTAssertFalse(nextPageResponse.hasNextPage) - XCTAssertEqual(nextPageResponse.entities!.count, 7) + XCTAssertTrue(nextPageResponse.hasNextPage) + XCTAssertEqual(nextPageResponse.entities!.count, 10) getExpect.fulfill() } }
