aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--test/rdoc/test_rdoc_options.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b702f8e399..252d6d4a7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Dec 1 09:44:16 2012 Eric Hodel <drbrain@segment7.net>
+
+ * test/rdoc/test_rdoc_options.rb: Windows drive letters are
+ case-insensitive.
+
Sat Dec 1 09:42:13 2012 Eric Hodel <drbrain@segment7.net>
* lib/rubygems.rb: Search for gem deps file up the directory tree.
diff --git a/test/rdoc/test_rdoc_options.rb b/test/rdoc/test_rdoc_options.rb
index 440c77bec3..723a2dccfd 100644
--- a/test/rdoc/test_rdoc_options.rb
+++ b/test/rdoc/test_rdoc_options.rb
@@ -197,7 +197,7 @@ rdoc_include:
assert_equal 1, @options.static_path.length
- assert_match %r%^([A-Z]:)?/$%, @options.static_path.first
+ assert_match %r%^([A-Z]:)?/$%i, @options.static_path.first
end
def test_parse_coverage