features/step_definitions/invalid_commands.rb in ftpd-0.5.0 vs features/step_definitions/invalid_commands.rb in ftpd-0.6.0
- old
+ new
@@ -1,11 +1,11 @@
When /^the client sends an empty command$/ do
capture_error do
- @client.raw ''
+ client.raw ''
end
end
When /^the client sends a non-word command$/ do
capture_error do
- @client.raw '*'
+ client.raw '*'
end
end