From 63efa1665b010cdde711c0e6024962ba1c486b00 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 31 Dec 2008 15:59:42 -0700
Subject: [PATCH] immutable: make the test of large files more likely to work
 by requesting to allocate space for only one huge share, not three

---
 src/allmydata/test/test_storage.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/allmydata/test/test_storage.py b/src/allmydata/test/test_storage.py
index e5c3584f..3548c5cb 100644
--- a/src/allmydata/test/test_storage.py
+++ b/src/allmydata/test/test_storage.py
@@ -257,9 +257,9 @@ class Server(unittest.TestCase):
     def test_large_share(self):
         ss = self.create("test_large_share")
 
-        already,writers = self.allocate(ss, "allocate", [0,1,2], 2**32+2)
+        already,writers = self.allocate(ss, "allocate", [0], 2**32+2)
         self.failUnlessEqual(already, set())
-        self.failUnlessEqual(set(writers.keys()), set([0,1,2]))
+        self.failUnlessEqual(set(writers.keys()), set([0]))
 
         shnum, bucket = writers.items()[0]
         # This test is going to hammer your filesystem if it doesn't make a sparse file for this.  :-(
-- 
2.45.2