Update spec/components/concern/has_custom_fields_spec.rb

Co-authored-by: Régis Hanol <regis@hanol.fr>
This commit is contained in:
Faizaan Gagan 2020-08-25 15:58:53 +05:30 committed by Robin Ward
parent 7e5290203f
commit 2100de449e
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ describe HasCustomFields do
expect(test_item.custom_fields[:bob]).to eq('marley') expect(test_item.custom_fields[:bob]).to eq('marley')
expect(test_item.custom_fields[:jack]).to eq('black') expect(test_item.custom_fields[:jack]).to eq('black')
## Update via string index again # Update via string index again
test_item.custom_fields['bob'] = 'the builder' test_item.custom_fields['bob'] = 'the builder'
expect(test_item.custom_fields[:bob]).to eq('the builder') expect(test_item.custom_fields[:bob]).to eq('the builder')