From 444ea2e79aefa6e16d01f535e9a580b7e76b15e7 Mon Sep 17 00:00:00 2001 From: John Mair Date: Thu, 9 Jun 2011 04:00:43 +1200 Subject: [PATCH] fixed broken interpolation test for command_processor --- test/test_command_processor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_command_processor.rb b/test/test_command_processor.rb index 2096d9c8..e2b69dac 100644 --- a/test/test_command_processor.rb +++ b/test/test_command_processor.rb @@ -112,7 +112,7 @@ describe "Pry::CommandProcessor" do @pry.commands.command("blah") {} a = "bl" b = "ah" - command, captures, pos = @command_processor.command_matched "#{a}#{b}", binding + command, captures, pos = @command_processor.command_matched '#{a}#{b}', binding command.name.should == "blah" captures.should == []