]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fix more inotify test calls
authorDavid Stainton <dstainton415@gmail.com>
Tue, 26 May 2015 17:04:08 +0000 (10:04 -0700)
committerDaira Hopwood <daira@jacaranda.org>
Thu, 1 Oct 2015 00:19:43 +0000 (01:19 +0100)
src/allmydata/test/test_drop_upload.py

index f9cc3759b8fe044f0be43f0b171ce90288f00cf7..4187bc575f54d5917abf829d4e4340bf1193dfca 100644 (file)
@@ -254,8 +254,7 @@ class DropUploadTestMixin(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, NonA
 
         def _move_dir_away(ign):
             os.rename(new_empty_tree_dir, empty_tree_dir)
-            # XXX mock notify event
-            #self.notify_close_write(to_filepath(new_empty_tree_dir))
+            self.notify(to_filepath(new_empty_tree_dir), self.inotify.IN_CLOSE_WRITE) # XXX
 
         d.addCallback(_move_dir_away)
         def create_file(val):
@@ -263,8 +262,7 @@ class DropUploadTestMixin(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, NonA
             self.uploader.set_uploaded_callback(d2.callback)
             test_file = abspath_expanduser_unicode(u"what", base=empty_tree_dir)
             fileutil.write(test_file, "meow")
-            # XXX
-            #self.notify_close_write(to_filepath(test_file))
+            self.notify(to_filepath(test_file), self.inotify.IN_CLOSE_WRITE)
             return d2
         d.addCallback(create_file)
         def sleep_a_while(ign):