From 04c04211ac72f669fe6fc1e98eb2e00c83bb0a79 Mon Sep 17 00:00:00 2001 From: Andrew Sowers Date: Wed, 1 Mar 2017 20:23:45 -0500 Subject: [PATCH] Carthage update, update expectation test for 'int' collection --- Cartfile.resolved | 6 +++--- Tests/JSONRequestTests.swift | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cartfile.resolved b/Cartfile.resolved index b18139e..fba5e1b 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,5 +1,5 @@ github "Quick/Nimble" "v5.1.1" -github "Quick/Quick" "v1.0.0" -github "antitypical/Result" "3.1.0" +github "Quick/Quick" "v1.1.0" +github "antitypical/Result" "3.2.0" github "jspahrsummers/xcconfigs" "3d9d99634cae6d586e272543d527681283b33eb0" -github "ReactiveCocoa/ReactiveSwift" "1.0.0" +github "ReactiveCocoa/ReactiveSwift" "1.1.0" diff --git a/Tests/JSONRequestTests.swift b/Tests/JSONRequestTests.swift index f794732..9356c69 100644 --- a/Tests/JSONRequestTests.swift +++ b/Tests/JSONRequestTests.swift @@ -40,7 +40,7 @@ class JSONRequestTests: QuickSpec { .startWithResult { (result: Result<[Int], NetworkError>) in colors = result.value } - expect(colors?.count).toEventually(equal(513), timeout: 5) + expect(colors?.count).toEventually(equal(519), timeout: 5) } } }