lib/belzebuth/wait_condition/file_exist.rb in belzebuth-0.2.1 vs lib/belzebuth/wait_condition/file_exist.rb in belzebuth-0.2.2

- old
+ new

@@ -5,9 +5,9 @@ def initialize(file) @file = file end def call(process) - File.exist?(file) + File.exist?(@file) end end end end