]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
test_storage: oops, update the test to match the leave-incoming/ change
authorBrian Warner <warner@allmydata.com>
Thu, 26 Jun 2008 18:36:17 +0000 (11:36 -0700)
committerBrian Warner <warner@allmydata.com>
Thu, 26 Jun 2008 18:36:17 +0000 (11:36 -0700)
src/allmydata/test/test_storage.py

index fd1a6df5d0fa5065386ab5e807f826cb22f6d62a..fca443a655943943578ebd8c72828efef027e965 100644 (file)
@@ -275,8 +275,13 @@ class Server(unittest.TestCase):
         for i,wb in writers.items():
             wb.remote_write(0, "%10d" % i)
             wb.remote_close()
-        incomingdir = os.path.dirname(os.path.dirname(os.path.dirname(wb.incominghome)))
-        self.failIf(os.path.exists(incomingdir))
+        incoming_share_dir = wb.incominghome
+        incoming_bucket_dir = os.path.dirname(incoming_share_dir)
+        incoming_prefix_dir = os.path.dirname(incoming_bucket_dir)
+        incoming_dir = os.path.dirname(incoming_prefix_dir)
+        self.failIf(os.path.exists(incoming_bucket_dir))
+        self.failIf(os.path.exists(incoming_prefix_dir))
+        self.failUnless(os.path.exists(incoming_dir))
 
     def test_allocate(self):
         ss = self.create("test_allocate")