From 7dd4d9de96c7e48c24a750bae54d9f467dfb3d50 Mon Sep 17 00:00:00 2001 From: beatrix-bitrot Date: Fri, 30 Jun 2017 16:27:52 +0000 Subject: [PATCH] try fix failing controller spec caused by long bios --- .../controllers/api/v1/accounts/credentials_controller_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/controllers/api/v1/accounts/credentials_controller_spec.rb b/spec/controllers/api/v1/accounts/credentials_controller_spec.rb index 89dbca111..7bcf9fe0e 100644 --- a/spec/controllers/api/v1/accounts/credentials_controller_spec.rb +++ b/spec/controllers/api/v1/accounts/credentials_controller_spec.rb @@ -44,7 +44,8 @@ describe Api::V1::Accounts::CredentialsController do describe 'with invalid data' do before do - patch :update, params: { note: 'This is too long. ' * 10 } + # note length limit is 501, presently hardcoded, so give it 510 to fail + patch :update, params: { note: '1234567890' * 51 } end it 'returns http unprocessable entity' do