Skip to content

Commit

Permalink
change order of arguments for assert_equal example in README
Browse files Browse the repository at this point in the history
  • Loading branch information
lxxxvi authored and jeremyevans committed Oct 20, 2022
1 parent b1084c1 commit 2036831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class HomepageTest < Test::Unit::TestCase
get '/'

assert last_response.ok?
assert_equal last_response.body, 'All responses are OK'
assert_equal 'All responses are OK', last_response.body
end

def delete_with_url_params_and_body
Expand Down

0 comments on commit 2036831

Please sign in to comment.