summaryrefslogtreecommitdiff
path: root/spec/models/concerns
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-05-23 14:16:35 -0400
committerRobert Speicher <rspeicher@gmail.com>2016-05-23 14:16:35 -0400
commit3ba72f69af69d9fb2c46cb6c25d571f92ffd2ee1 (patch)
treef5b527f659bc3fe4e417c63ac9bd6fe0c97e5250 /spec/models/concerns
parent68b8e86a813608ae378b39ba5a64ff07fb9a057a (diff)
downloadgitlab-ce-3ba72f69af69d9fb2c46cb6c25d571f92ffd2ee1.tar.gz
Enable Style/SpaceAroundKeyword cop and fix offenses
Diffstat (limited to 'spec/models/concerns')
-rw-r--r--spec/models/concerns/token_authenticatable_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/concerns/token_authenticatable_spec.rb b/spec/models/concerns/token_authenticatable_spec.rb
index 30c0a04b840..b6adc2bf247 100644
--- a/spec/models/concerns/token_authenticatable_spec.rb
+++ b/spec/models/concerns/token_authenticatable_spec.rb
@@ -49,7 +49,7 @@ describe ApplicationSetting, 'TokenAuthenticatable' do
context 'token is generated' do
before { subject.send("reset_#{token_field}!") }
- it 'persists a new token 'do
+ it 'persists a new token' do
expect(subject.send(:read_attribute, token_field)).to be_a String
end
end