summaryrefslogtreecommitdiffstats
path: root/test/functional
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/trackers_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/trackers_controller_test.rb b/test/functional/trackers_controller_test.rb
index f3d7a1c0f..a2664f295 100644
--- a/test/functional/trackers_controller_test.rb
+++ b/test/functional/trackers_controller_test.rb
@@ -152,7 +152,7 @@ class TrackersControllerTest < ActionController::TestCase
def test_move_lower
tracker = Tracker.find_by_position(1)
- put :update, :id => 1, :tracker => { :move_to => 'lower' }
+ put :update, :id => 1, :tracker => { :position => '2' }
assert_equal 2, tracker.reload.position
end