20300: Change deprecated update_attributes to update.
[arvados.git] / apps / workbench / test / integration / collection_upload_test.rb
index e54a5c21853429d143142309a933fb41cf34c2e7..43e7a22dc25dcf3326a9d2fc07dbfeca5823ded2 100644 (file)
@@ -21,7 +21,7 @@ class CollectionUploadTest < ActionDispatch::IntegrationTest
   teardown do
     use_token :admin do
       @keep_services.each do |ks|
-        KeepService.find(ks.uuid).update_attributes(ks.attributes)
+        KeepService.find(ks.uuid).update(ks.attributes)
       end
     end
     testfiles.each do |filename, _|
@@ -80,7 +80,7 @@ class CollectionUploadTest < ActionDispatch::IntegrationTest
     need_selenium "to make file uploads work"
     use_token :admin do
       KeepService.where(service_type: 'proxy').first.
-        update_attributes(service_ssl_flag: false)
+        update(service_ssl_flag: false)
     end
     visit page_with_token 'active', sandbox_path
     find('.nav-tabs a', text: 'Upload').click
@@ -96,11 +96,11 @@ class CollectionUploadTest < ActionDispatch::IntegrationTest
   test "Report network error" do
     need_selenium "to make file uploads work"
     use_token :admin do
-      # Even if you somehow do port>2^16, surely nx.example.net won't
+      # Even if port 0 is a thing, surely nx.example.net won't
       # respond
       KeepService.where(service_type: 'proxy').first.
-        update_attributes(service_host: 'nx.example.net',
-                          service_port: 99999)
+        update(service_host: 'nx.example.net',
+                          service_port: 0)
     end
     visit page_with_token 'active', sandbox_path