From aac3547cc2874f80f67f99e75a59ecf1a124c49e Mon Sep 17 00:00:00 2001 From: David Taylor Date: Wed, 20 Oct 2021 23:04:08 +0100 Subject: [PATCH] DEV: Update AWS API stub following gem version bump (#14673) The latest version of the gem doesn't send whitespace in this request body, so we need to update the test stub accordingly --- spec/requests/uploads_controller_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/requests/uploads_controller_spec.rb b/spec/requests/uploads_controller_spec.rb index b142eed0f69..def58bec7ed 100644 --- a/spec/requests/uploads_controller_spec.rb +++ b/spec/requests/uploads_controller_spec.rb @@ -1201,7 +1201,7 @@ describe UploadsController do :post, "#{temp_location}?uploadId=#{external_upload_stub.external_upload_identifier}" ).with( - body: "\n \n test1\n 1\n \n \n test2\n 2\n \n\n" + body: "test11test22" ).to_return(status: 200, body: <<~XML)