Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace exists? with exist?
  • Loading branch information
djberg96 committed Oct 16, 2014
1 parent 3d3ae92 commit 52ed2af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_zlib_gzip_reader.rb
Expand Up @@ -177,7 +177,7 @@ def teardown
end

def self.shutdown
File.delete(@@gz_file) if File.exists?(@@gz_file)
File.delete(@@gz_file) if File.exist?(@@gz_file)
@@gz_file = nil
end
end
2 changes: 1 addition & 1 deletion test/test_zlib_gzip_writer.rb
Expand Up @@ -179,6 +179,6 @@ def teardown
end

def self.shutdown
File.delete(@@file) if File.exists?(@@file)
File.delete(@@file) if File.exist?(@@file)
end
end

0 comments on commit 52ed2af

Please sign in to comment.