aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_infix_operation.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/nodes/test_infix_operation.rb')
-rw-r--r--test/nodes/test_infix_operation.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nodes/test_infix_operation.rb b/test/nodes/test_infix_operation.rb
index db3216eeee..3d2eb0d9c6 100644
--- a/test/nodes/test_infix_operation.rb
+++ b/test/nodes/test_infix_operation.rb
@@ -21,9 +21,9 @@ module Arel
def test_opertaion_ordering
operation = InfixOperation.new :+, 1, 2
ordering = operation.desc
- assert_kind_of Ordering, ordering
+ assert_kind_of Descending, ordering
assert_equal operation, ordering.expr
- assert_equal :desc, ordering.direction
+ assert ordering.descending?
end
end
end