Merge branch '18693-dedup-permissions'
[arvados.git] / services / api / test / functional / arvados / v1 / nodes_controller_test.rb
index 435764baa405db1c39cf8cf6eb0c007745ed765c..47f6c5ff3f306ecb95c0a4cf7db86263e2676452 100644 (file)
@@ -211,19 +211,8 @@ class Arvados::V1::NodesControllerTest < ActionController::TestCase
     assert_response 403
   end
 
-  test "job readable after updating other attributes" do
-    authorize_with :admin
-    post :update, params: {
-      id: nodes(:busy).uuid,
-      node: {last_ping_at: 1.second.ago},
-    }
-    assert_response :success
-    assert_equal(jobs(:nearly_finished_job).uuid, json_response["job_uuid"],
-                 "mismatched job UUID after ping update")
-  end
-
   test "node should fail ping with invalid hostname config format" do
-    Rails.configuration.Containers["SLURM"]["Managed"]["AssignNodeHostname"] = 'compute%<slot_number>04'  # should end with "04d"
+    Rails.configuration.Containers.SLURM.Managed.AssignNodeHostname = 'compute%<slot_number>04'  # should end with "04d"
     post :ping, params: {
       id: nodes(:new_with_no_hostname).uuid,
       ping_secret: nodes(:new_with_no_hostname).info['ping_secret'],