Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix 1.8 compatibility issue (trailing comma)
  • Loading branch information
moredip committed May 30, 2012
1 parent b62af1d commit 9d5b0fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gem/lib/frank-cucumber/keyboard_helper.rb
Expand Up @@ -6,7 +6,7 @@ def type_into_keyboard(text_to_type)
text_to_type = text_to_type+"\n" unless text_to_type.end_with?("\n")
res = frank_server.send_post(
'type_into_keyboard',
:text_to_type => text_to_type,
:text_to_type => text_to_type
)
Frank::Cucumber::Gateway.evaluate_frankly_response( res, "typing the following into the keyboard '#{text_to_type}'" )
end
Expand Down

0 comments on commit 9d5b0fe

Please sign in to comment.