aboutsummaryrefslogtreecommitdiffstats
path: root/test/attributes/test_attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/attributes/test_attribute.rb')
-rw-r--r--test/attributes/test_attribute.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/attributes/test_attribute.rb b/test/attributes/test_attribute.rb
index 352774071a..901850ff4b 100644
--- a/test/attributes/test_attribute.rb
+++ b/test/attributes/test_attribute.rb
@@ -619,9 +619,9 @@ module Arel
end
describe '#asc' do
- it 'should create an Ordering node' do
+ it 'should create an Ascending node' do
relation = Table.new(:users)
- relation[:id].asc.must_be_kind_of Nodes::Ordering
+ relation[:id].asc.must_be_kind_of Nodes::Ascending
end
it 'should generate ASC in sql' do
@@ -635,9 +635,9 @@ module Arel
end
describe '#desc' do
- it 'should create an Ordering node' do
+ it 'should create a Descending node' do
relation = Table.new(:users)
- relation[:id].desc.must_be_kind_of Nodes::Ordering
+ relation[:id].desc.must_be_kind_of Nodes::Descending
end
it 'should generate DESC in sql' do