fixed broken interpolation test for command_processor

This commit is contained in:
John Mair 2011-06-09 04:00:43 +12:00
parent be67273e33
commit 444ea2e79a
1 changed files with 1 additions and 1 deletions

View File

@ -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 == []