features/step_definitions/quit.rb in ftpd-0.5.0 vs features/step_definitions/quit.rb in ftpd-0.6.0

- old
+ new

@@ -1,15 +1,15 @@ When /^the client successfully quits$/ do - @client.quit + client.quit end When /^the client quits$/ do capture_error do step 'the client successfully quits' end end When /^the client quits with a parameter$/ do capture_error do - @client.raw 'QUIT', 'foo' + client.raw 'QUIT', 'foo' end end