From: Tommi Virtanen Date: Tue, 26 Jul 2011 16:43:56 +0000 (-0700) Subject: Don't bother with fractional nanoseconds. X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3eb53db2b3b906dbeb11be5fe70d99a38f97742a;p=s3-tests.git Don't bother with fractional nanoseconds. <1 nanosecond is well below the threshold we can measure, everything becomes simpler with integers, and they're easier to skim. --- diff --git a/s3tests/realistic.py b/s3tests/realistic.py index 2da8374d..6857cf99 100644 --- a/s3tests/realistic.py +++ b/s3tests/realistic.py @@ -23,7 +23,7 @@ class RandomContentFile(object): self.seek(0) def _mark_chunk(self): - self.chunks.append([self.offset, (time.time() - self.last_seek) * NANOSECOND]) + self.chunks.append([self.offset, int(round((time.time() - self.last_seek) * NANOSECOND))]) def seek(self, offset): assert offset == 0 @@ -93,7 +93,7 @@ class FileVerifier(object): self.chunks = [] def _mark_chunk(self): - self.chunks.append([self.size, (time.time() - self.created_at) * NANOSECOND]) + self.chunks.append([self.size, int(round((time.time() - self.created_at) * NANOSECOND))]) def write(self, data): self.size += len(data)