Skip to content

Commit

Permalink
Swapped parameters of assert_equal in assert_select
Browse files Browse the repository at this point in the history
  • Loading branch information
vlal committed Mar 22, 2014
1 parent 9d44b3f commit 0ebae1d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,3 +1,10 @@
* Swapped the parameters of assert_equal in `assert_select` so that the
proper values were printed correctly

Fixes #14422.

*Vishal Lal*

* The method `shallow?` returns false if the parent resource is a singleton so
we need to check if we're not inside a nested scope before copying the :path
and :as options to their shallow equivalents.
Expand Down
Expand Up @@ -291,7 +291,7 @@ def assert_select(*args, &block)
# so is this custom message really needed?
message = message || %(Expected #{count_description(min, max, count)} matching "#{selector.to_s}", found #{matches.size}.)
if count
assert_equal matches.size, count, message
assert_equal count, matches.size, message
else
assert_operator matches.size, :>=, min, message if min
assert_operator matches.size, :<=, max, message if max
Expand Down

0 comments on commit 0ebae1d

Please sign in to comment.