aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-24 10:27:18 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-24 10:33:32 +0900
commite954be14d07e54b8dbf71c0fa227e5818eaa01e6 (patch)
tree9da2e7d220397e67ce1a5c6fdde61bcf0895cbb7 /spec
parent992aa2cda50140abbca165024682eae998756e2d (diff)
downloadruby-e954be14d07e54b8dbf71c0fa227e5818eaa01e6.tar.gz
Get rid of false positive misspellings
[Bug #16437]
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/core/file/readlink_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/file/readlink_spec.rb b/spec/ruby/core/file/readlink_spec.rb
index eb3bfda30e..20741ba121 100644
--- a/spec/ruby/core/file/readlink_spec.rb
+++ b/spec/ruby/core/file/readlink_spec.rb
@@ -26,7 +26,7 @@ describe "File.readlink" do
it "raises an Errno::ENOENT if there is no such file" do
# TODO: missing_file
- -> { File.readlink("/this/surely/doesnt/exist") }.should raise_error(Errno::ENOENT)
+ -> { File.readlink("/this/surely/does/not/exist") }.should raise_error(Errno::ENOENT)
end
it "raises an Errno::EINVAL if called with a normal file" do