D-Bus testing: avoid assertAlmostEqual(delta=...)

The "delta" keyword is not supported by Python < 2.7.
This commit is contained in:
Patrick Ohly 2012-05-11 19:14:52 +00:00
parent 19cb9834df
commit 32a875ff65
1 changed files with 3 additions and 3 deletions

View File

@ -3612,9 +3612,9 @@ END:VCARD''')
self.checkSync(expectedError=22003, expectedResult=22003)
self.assertSyncStatus('server', 22003, "error code from SyncEvolution password request timed out (local, status 22003): failure in local sync child: Could not get the 'addressbook backend' password from user.")
end = time.time()
self.assertAlmostEqual(120 + (usingValgrind() and 20 or 0),
end - start,
delta=usingValgrind() and 60 or 20)
self.assertTrue(abs(120 + (usingValgrind() and 20 or 0) -
(end - start)) <
(usingValgrind() and 60 or 20))
# Killing the syncevo-dbus-helper before it even starts (SYNCEVOLUTION_LOCAL_CHILD_DELAY=5)