From 840d940957548e466c4777fbf686704468d6b3ed Mon Sep 17 00:00:00 2001
From: Scott Taylor <scott@railsnewbie.com>
Date: Sun, 8 Nov 2009 13:23:31 -0500
Subject: [PATCH 1/2] Fix a test for ruby 1.9.1 (question mark *must* end the method in 1.9.1?)

---
 test/fakefs_test.rb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/test/fakefs_test.rb b/test/fakefs_test.rb
index af6aa93..0cdf3ac 100644
--- a/test/fakefs_test.rb
+++ b/test/fakefs_test.rb
@@ -288,7 +288,7 @@ class FakeFSTest < Test::Unit::TestCase
     assert_nil File.size?("/path/to/other.txt")
   end
 
-  def test_can_check_size?_of_empty_file
+  def test_can_check_size_of_empty_file
     path = '/path/to/file.txt'
     File.open(path, 'w') do |f|
       f << ''
-- 
1.7.1

