We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here:
magic_test/lib/magic_test/support.rb
Line 38 in a2b40cd
That space between #{last["action"]} and #{last["target"]}#{last["options"]} is causing this:
#{last["action"]}
#{last["target"]}#{last["options"]}
What can we do?
last["action"].to_s + " #{last["target"]}#{last["options"]}" or "#{last["action"]}" + " #{last["target"]}#{last["options"]}" or #{last["action"]}#{' ' + last["target"]}#{last["options"]}
last["action"].to_s + " #{last["target"]}#{last["options"]}"
"#{last["action"]}" + " #{last["target"]}#{last["options"]}"
#{last["action"]}#{' ' + last["target"]}#{last["options"]}
What do you think? I can send a PR with this after discuss the improvement if needed.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Here:
magic_test/lib/magic_test/support.rb
Line 38 in a2b40cd
That space between
#{last["action"]}
and#{last["target"]}#{last["options"]}
is causing this:What can we do?
last["action"].to_s + " #{last["target"]}#{last["options"]}"
or
"#{last["action"]}" + " #{last["target"]}#{last["options"]}"
or
#{last["action"]}#{' ' + last["target"]}#{last["options"]}
What do you think? I can send a PR with this after discuss the improvement if needed.
The text was updated successfully, but these errors were encountered: