From da5b84d6bea564126e354629d284950ea1000d45 Mon Sep 17 00:00:00 2001 From: Ricardo Pereira Date: Wed, 16 Mar 2016 07:15:33 +0000 Subject: [PATCH] Fix: expect timestamp with higher delta --- Spec/Auth.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spec/Auth.swift b/Spec/Auth.swift index 93f9dad1a..3059979b6 100644 --- a/Spec/Auth.swift +++ b/Spec/Auth.swift @@ -1561,7 +1561,7 @@ class Auth : QuickSpec { delay(0.25) { let now = NSDate().artToIntegerMs() let firstParamsTimestamp = params.timestamp.artToIntegerMs() - expect(firstParamsTimestamp).to(beCloseTo(now, within: 1.0)) + expect(firstParamsTimestamp).to(beCloseTo(now, within: 1.5)) delay(0.25) { expect(params.timestamp.artToIntegerMs()).to(equal(firstParamsTimestamp)) done()