From f854b9b8a10649d1898b840a8659a69dfee693ab Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 28 Nov 2011 20:49:01 +0000 Subject: [PATCH] test_mogilefs_integration: remove umask/permissions check on created file It's not consistent between Ruby versions... oh well.. --- test/test_mogilefs_integration.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_mogilefs_integration.rb b/test/test_mogilefs_integration.rb index 18ecd21..e7ca642 100644 --- a/test/test_mogilefs_integration.rb +++ b/test/test_mogilefs_integration.rb @@ -19,8 +19,6 @@ class TestMogileFSIntegration < TestMogIntegration tmp.close! assert_equal 4, @client.get_file_data("CRUD", tmp_path) assert_equal "DATA", File.read(tmp_path) - st = File.stat(tmp_path) - assert_equal 0100600, st.mode File.unlink(tmp_path) sio = StringIO.new("") -- 2.11.4.GIT