summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-04-07 03:15:04 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-04-07 03:15:04 -0400
commit23d5354beb0272add195613c8689112485f6b9e3 (patch)
tree584b0d461d99aeb8e8056c74ef5a9207d72b69f5
parent17298458a86f73ea7a96a79c1092c0324a895387 (diff)
downloaddogpile-core-23d5354beb0272add195613c8689112485f6b9e3.tar.gz
whitespace
-rw-r--r--tests/test_dogpile.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/test_dogpile.py b/tests/test_dogpile.py
index bc0031a..55386e0 100644
--- a/tests/test_dogpile.py
+++ b/tests/test_dogpile.py
@@ -15,7 +15,7 @@ class ConcurrencyTest(TestCase):
(2, .5, 50, .05, .1),
# slow creation time
- (5, 2, 50, .1, .1),
+ (5, 2, 50, .1, .1),
]
@@ -180,7 +180,7 @@ class ConcurrencyTest(TestCase):
# should never hit a cache invalidation
# if we've set expiretime below the cache
# expire time (assuming a cache which
- # honors this).
+ # honors this).
self._assert_log(
cache_expire_time < expiretime,
"Cache expiration hit, cache "
@@ -347,7 +347,7 @@ class DogpileTest(TestCase):
with dogpile.acquire(create_resource):
assert the_resource[0] == 2
-
+
def test_no_expiration(self):
dogpile = Dogpile(None)
the_resource = [0]
@@ -361,4 +361,3 @@ class DogpileTest(TestCase):
with dogpile.acquire(create_resource):
assert the_resource[0] == 1
- \ No newline at end of file