Fix typos in pinning tests

This commit is contained in:
Karina Kwiatek 2023-02-10 22:33:17 +01:00
parent 6724aef105
commit dcad9073a8
1 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ describe AnswerController, type: :controller do
before(:each) { sign_in other_user } before(:each) { sign_in other_user }
it "does not pin the answer do" do it "does not pin the answer" do
travel_to(Time.at(1603290950).utc) do travel_to(Time.at(1603290950).utc) do
expect { subject }.to raise_error(Errors::NotAuthorized) expect { subject }.to raise_error(Errors::NotAuthorized)
expect(answer.reload.pinned_at).to eq(nil) expect(answer.reload.pinned_at).to eq(nil)
@ -79,7 +79,7 @@ describe AnswerController, type: :controller do
answer.update!(pinned_at: Time.at(1603290950).utc) answer.update!(pinned_at: Time.at(1603290950).utc)
end end
it "pins the answer" do it "unpins the answer" do
expect { subject }.to change { answer.reload.pinned_at }.from(Time.at(1603290950).utc).to(nil) expect { subject }.to change { answer.reload.pinned_at }.from(Time.at(1603290950).utc).to(nil)
expect(response).to redirect_to(user_path(user)) expect(response).to redirect_to(user_path(user))
end end
@ -93,7 +93,7 @@ describe AnswerController, type: :controller do
answer.update!(pinned_at: Time.at(1603290950).utc) answer.update!(pinned_at: Time.at(1603290950).utc)
end end
it "does not pin the answer do" do it "does not unpin the answer" do
expect { subject }.to raise_error(Errors::NotAuthorized) expect { subject }.to raise_error(Errors::NotAuthorized)
expect(answer.reload.pinned_at).to eq(Time.at(1603290950).utc) expect(answer.reload.pinned_at).to eq(Time.at(1603290950).utc)
end end