From: Thomas Wood Date: Thu, 7 May 2009 22:58:32 +0000 (+0000) Subject: Fix the test I just broke... X-Git-Tag: live~7484 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/86caeb336089de295c2490912c01c6534634f6af Fix the test I just broke... --- diff --git a/test/functional/changeset_controller_test.rb b/test/functional/changeset_controller_test.rb index 91b89cdba..e7c19c769 100644 --- a/test/functional/changeset_controller_test.rb +++ b/test/functional/changeset_controller_test.rb @@ -1423,7 +1423,7 @@ EOF assert_template "list" # Now check that all 20 (or however many were returned) changesets are in the html assert_select "h1", :text => "Recent Changes", :count => 1 - assert_select "table[id='keyvalue'] tr", :count => @changesets.size + 1 + assert_select "table[id='changeset_list'] tr", :count => @changesets.size + 1 @changesets.each do |changeset| # FIXME this test needs rewriting - test for table contents end