X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d898b4cb9c5e4a0e9366fa987d0e51af1918ae58..a37422d188099dae50c854f92022a74107d5a11b:/apps/workbench/test/controllers/repositories_controller_test.rb?ds=sidebyside diff --git a/apps/workbench/test/controllers/repositories_controller_test.rb b/apps/workbench/test/controllers/repositories_controller_test.rb index cb8916bc58..b81e2384c9 100644 --- a/apps/workbench/test/controllers/repositories_controller_test.rb +++ b/apps/workbench/test/controllers/repositories_controller_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' require 'helpers/repository_stub_helper' require 'helpers/share_object_helper' @@ -59,7 +63,7 @@ class RepositoriesControllerTest < ActionController::TestCase assert_response :success panes = css_select('[data-toggle=tab]').each do |pane| - pane_name = pane.attributes['href'] + pane_name = pane.attributes['href'].value assert_includes expected_panes, pane_name end end @@ -92,7 +96,7 @@ class RepositoriesControllerTest < ActionController::TestCase commit: sha1, }, session_for(user) assert_response :success - assert_select 'pre', h(commit) + assert_select 'pre', commit end test "show blob to #{user}" do @@ -104,7 +108,7 @@ class RepositoriesControllerTest < ActionController::TestCase path: 'COPYING', }, session_for(user) assert_response :success - assert_select 'pre', h(filedata) + assert_select 'pre', filedata end end