From 3eb53db2b3b906dbeb11be5fe70d99a38f97742a Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Tue, 26 Jul 2011 09:43:56 -0700 Subject: [PATCH] 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. --- s3tests/realistic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/s3tests/realistic.py b/s3tests/realistic.py index 2da8374..6857cf9 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)