File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
activerecord/test/cases/adapters/postgresql Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ def teardown
4242
4343 def test_virtual_column
4444 column = VirtualColumn . columns_hash [ "upper_name" ]
45- assert_predicate column , :virtual_stored ?
45+ assert_predicate column , :virtual ?
4646 assert_equal "RAILS" , VirtualColumn . take . upper_name
4747 end
4848
4949 def test_stored_column
5050 column = VirtualColumn . columns_hash [ "name_length" ]
51- assert_predicate column , :virtual_stored ?
51+ assert_predicate column , :virtual ?
5252 assert_equal 5 , VirtualColumn . take . name_length
5353 end
5454
@@ -58,7 +58,7 @@ def test_change_table
5858 end
5959 VirtualColumn . reset_column_information
6060 column = VirtualColumn . columns_hash [ "lower_name" ]
61- assert_predicate column , :virtual_stored ?
61+ assert_predicate column , :virtual ?
6262 assert_equal "rails" , VirtualColumn . take . lower_name
6363 end
6464
You can’t perform that action at this time.
0 commit comments