There was a question "How to deal with obsolete answers?"
The most popular answer to it says that obsolete answers should be deleted or updated.
Here is a question asked at SO. Its accepted answer became obsolete. Then @michaeltwofish posted up-to-date answer. Then @Trott made an edit updating original answer.
So currently there are two answers about the same.
Should one of them be deleted? Was it good to update original accepted answer?
Edit: Should accepted answer be updated properly (i.e. should
Given /^I login successfully$/
Given "I login with valid credentials"
Then "I should be logged in"
end
be edited to:
Given /^I login successfully$/
step "I login with valid credentials"
step "I should be logged in"
end
?