Skip to content

Commit

Permalink
Dir.pwd sometimes mixes case on drive letter...I no longer think this…
Browse files Browse the repository at this point in the history
… is a bug but Windows only beating me down
  • Loading branch information
enebo committed May 16, 2012
1 parent b998b13 commit b2626f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_kernel.rb
Expand Up @@ -584,7 +584,7 @@ def test_backquote1
else else
result = `sh -c pwd`.strip result = `sh -c pwd`.strip
end end
expected = Dir.pwd expected = Dir.pwd.downcase
assert_equal(expected, result) assert_equal(expected, result)
end end


Expand All @@ -594,7 +594,7 @@ def test_backquote1_1
else else
result = `pwd`.strip result = `pwd`.strip
end end
expected = Dir.pwd expected = Dir.pwd.downcase
assert_equal(expected, result) assert_equal(expected, result)
end end


Expand Down Expand Up @@ -845,4 +845,4 @@ def test_exit_bang
# untrace_var # untrace_var
# warn # warn


end end

0 comments on commit b2626f0

Please sign in to comment.