rubocop issues - Cleaning up (#8912)
* cleanup pass * undo mistakes * fixed. * revert
This commit is contained in:
parent
a00ce8c92c
commit
f194857ac9
15 changed files with 33 additions and 33 deletions
|
@ -728,9 +728,9 @@ RSpec.describe OStatus::AtomSerializer do
|
|||
it 'appends id element with unique tag' do
|
||||
block = Fabricate(:block)
|
||||
|
||||
time_before = Time.now
|
||||
time_before = Time.zone.now
|
||||
block_salmon = OStatus::AtomSerializer.new.block_salmon(block)
|
||||
time_after = Time.now
|
||||
time_after = Time.zone.now
|
||||
|
||||
expect(block_salmon.id.text).to(
|
||||
eq(OStatus::TagManager.instance.unique_tag(time_before.utc, block.id, 'Block'))
|
||||
|
@ -815,9 +815,9 @@ RSpec.describe OStatus::AtomSerializer do
|
|||
it 'appends id element with unique tag' do
|
||||
block = Fabricate(:block)
|
||||
|
||||
time_before = Time.now
|
||||
time_before = Time.zone.now
|
||||
unblock_salmon = OStatus::AtomSerializer.new.unblock_salmon(block)
|
||||
time_after = Time.now
|
||||
time_after = Time.zone.now
|
||||
|
||||
expect(unblock_salmon.id.text).to(
|
||||
eq(OStatus::TagManager.instance.unique_tag(time_before.utc, block.id, 'Block'))
|
||||
|
@ -994,9 +994,9 @@ RSpec.describe OStatus::AtomSerializer do
|
|||
it 'appends id element with unique tag' do
|
||||
favourite = Fabricate(:favourite)
|
||||
|
||||
time_before = Time.now
|
||||
time_before = Time.zone.now
|
||||
unfavourite_salmon = OStatus::AtomSerializer.new.unfavourite_salmon(favourite)
|
||||
time_after = Time.now
|
||||
time_after = Time.zone.now
|
||||
|
||||
expect(unfavourite_salmon.id.text).to(
|
||||
eq(OStatus::TagManager.instance.unique_tag(time_before.utc, favourite.id, 'Favourite'))
|
||||
|
@ -1179,9 +1179,9 @@ RSpec.describe OStatus::AtomSerializer do
|
|||
follow = Fabricate(:follow)
|
||||
follow.destroy!
|
||||
|
||||
time_before = Time.now
|
||||
time_before = Time.zone.now
|
||||
unfollow_salmon = OStatus::AtomSerializer.new.unfollow_salmon(follow)
|
||||
time_after = Time.now
|
||||
time_after = Time.zone.now
|
||||
|
||||
expect(unfollow_salmon.id.text).to(
|
||||
eq(OStatus::TagManager.instance.unique_tag(time_before.utc, follow.id, 'Follow'))
|
||||
|
@ -1327,9 +1327,9 @@ RSpec.describe OStatus::AtomSerializer do
|
|||
it 'appends id element with unique tag' do
|
||||
follow_request = Fabricate(:follow_request)
|
||||
|
||||
time_before = Time.now
|
||||
time_before = Time.zone.now
|
||||
authorize_follow_request_salmon = OStatus::AtomSerializer.new.authorize_follow_request_salmon(follow_request)
|
||||
time_after = Time.now
|
||||
time_after = Time.zone.now
|
||||
|
||||
expect(authorize_follow_request_salmon.id.text).to(
|
||||
eq(OStatus::TagManager.instance.unique_tag(time_before.utc, follow_request.id, 'FollowRequest'))
|
||||
|
@ -1396,9 +1396,9 @@ RSpec.describe OStatus::AtomSerializer do
|
|||
it 'appends id element with unique tag' do
|
||||
follow_request = Fabricate(:follow_request)
|
||||
|
||||
time_before = Time.now
|
||||
time_before = Time.zone.now
|
||||
reject_follow_request_salmon = OStatus::AtomSerializer.new.reject_follow_request_salmon(follow_request)
|
||||
time_after = Time.now
|
||||
time_after = Time.zone.now
|
||||
|
||||
expect(reject_follow_request_salmon.id.text).to(
|
||||
eq(OStatus::TagManager.instance.unique_tag(time_before.utc, follow_request.id, 'FollowRequest'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue