mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 07:16:03 +01:00
Add spaces to block braces
This commit is contained in:
parent
54c89d7247
commit
8993ac16b8
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue