From 20368312c9b557c15a4328f6393f8b329979b428 Mon Sep 17 00:00:00 2001 From: mario Date: Thu, 20 Oct 2022 09:07:21 +0200 Subject: [PATCH] change order of arguments for `assert_equal` example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a4aae3..cfa24e6 100644 --- a/README.md +++ b/README.md @@ -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