summaryrefslogtreecommitdiff
path: root/test/irb
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-05-09 14:22:04 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-05-09 14:22:04 +0900
commit4314c05377a19faa8570dfcc5c48b0ec3f7f26c8 (patch)
tree8b0ac41bac62d7a7d98f95c05ca8af64dedd98de /test/irb
parentcc9bc145300d129f27ad3a4ce186d7b1e3068b88 (diff)
Fix typos
Diffstat (limited to 'test/irb')
-rw-r--r--test/irb/test_cmd.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb
index 897828ee2e..bb33f535b6 100644
--- a/test/irb/test_cmd.rb
+++ b/test/irb/test_cmd.rb
@@ -74,10 +74,10 @@ module TestIRB
def test_irb_info_multiline_without_rc_files
inputrc_backup = ENV["INPUTRC"]
- ENV["INPUTRC"] = "unkown_inpurc"
+ ENV["INPUTRC"] = "unknown_inpurc"
ext_backup = IRB::IRBRC_EXT
IRB.__send__(:remove_const, :IRBRC_EXT)
- IRB.const_set(:IRBRC_EXT, "unkown_ext")
+ IRB.const_set(:IRBRC_EXT, "unknown_ext")
IRB.setup(__FILE__, argv: [])
IRB.conf[:USE_MULTILINE] = true
IRB.conf[:USE_SINGLELINE] = false
@@ -100,10 +100,10 @@ module TestIRB
def test_irb_info_singleline_without_rc_files
inputrc_backup = ENV["INPUTRC"]
- ENV["INPUTRC"] = "unkown_inpurc"
+ ENV["INPUTRC"] = "unknown_inpurc"
ext_backup = IRB::IRBRC_EXT
IRB.__send__(:remove_const, :IRBRC_EXT)
- IRB.const_set(:IRBRC_EXT, "unkown_ext")
+ IRB.const_set(:IRBRC_EXT, "unknown_ext")
IRB.setup(__FILE__, argv: [])
IRB.conf[:USE_MULTILINE] = false
IRB.conf[:USE_SINGLELINE] = true