Add spaces to block braces

This commit is contained in:
Andreas Nedbal 2022-06-26 03:19:18 +02:00 committed by Karina Kwiatek
parent 54c89d7247
commit 8993ac16b8
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ describe Settings::ThemeController, type: :controller do
context "user has no theme" do
it "creates a new theme" do
expect { subject }.to(change{ user.reload.theme })
expect { subject }.to(change { user.reload.theme })
end
it "renders the edit template" do
@ -70,7 +70,7 @@ describe Settings::ThemeController, type: :controller do
let(:theme) { FactoryBot.create(:theme, user: user) }
it "updates the theme" do
expect { subject }.to(change{ theme.reload.attributes })
expect { subject }.to(change { theme.reload.attributes })
end
it "renders the edit template" do