From: David Stainton Date: Tue, 26 May 2015 17:04:08 +0000 (-0700) Subject: fix more inotify test calls X-Git-Url: https://git.rkrishnan.org/(%5B%5E?a=commitdiff_plain;h=64d5db918331322fef7c99e100633f2f2fd3b4ce;p=tahoe-lafs%2Ftahoe-lafs.git fix more inotify test calls --- diff --git a/src/allmydata/test/test_drop_upload.py b/src/allmydata/test/test_drop_upload.py index f9cc3759..4187bc57 100644 --- a/src/allmydata/test/test_drop_upload.py +++ b/src/allmydata/test/test_drop_upload.py @@ -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):