diff options
Diffstat (limited to 'test/functional/principal_memberships_controller_test.rb')
-rw-r--r-- | test/functional/principal_memberships_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/principal_memberships_controller_test.rb b/test/functional/principal_memberships_controller_test.rb index fe89c1153..7d15114b2 100644 --- a/test/functional/principal_memberships_controller_test.rb +++ b/test/functional/principal_memberships_controller_test.rb @@ -28,7 +28,7 @@ class PrincipalMembershipsControllerTest < ActionController::TestCase get :new, :user_id => 7 assert_response :success assert_select 'label', :text => 'eCookbook' do - assert_select 'input[name=?][value=1]:not([disabled])', 'membership[project_ids][]' + assert_select 'input[name=?][value="1"]:not([disabled])', 'membership[project_ids][]' end end @@ -38,7 +38,7 @@ class PrincipalMembershipsControllerTest < ActionController::TestCase get :new, :user_id => 7 assert_response :success assert_select 'label', :text => 'eCookbook' do - assert_select 'input[name=?][value=1][disabled=disabled]', 'membership[project_ids][]' + assert_select 'input[name=?][value="1"][disabled=disabled]', 'membership[project_ids][]' end end |