Code style changes in specs and removed an extra space

This commit is contained in:
Surinna Curtis
2017-10-05 03:29:48 +00:00
committed by aschmitz
parent 22cf9bcff6
commit 8c6ecd5616
3 changed files with 11 additions and 12 deletions

View File

@@ -23,11 +23,11 @@ RSpec.describe Api::V2::MutesController, type: :controller do
end
it 'returns one mute' do
expect(mutes.size).to be(1)
expect(mutes.size).to be 1
end
it 'returns whether the mute hides notifications' do
expect(mutes.first["hide_notifications"]).to be(false)
expect(mutes.first["hide_notifications"]).to be false
end
end
end