forked from bfraser/puppet-grafana
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rubocop after disabling BooleanSymbol cop
- Loading branch information
1 parent
92e9097
commit d7f3058
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,8 +45,8 @@ | |
expect(gnotification[:name]).to eq('foo') | ||
expect(gnotification[:grafana_url]).to eq('http://example.com') | ||
expect(gnotification[:type]).to eq('email') | ||
expect(gnotification[:is_default]).to eq(:true) # rubocop:disable Lint/BooleanSymbol | ||
expect(gnotification[:send_reminder]).to eq(:true) # rubocop:disable Lint/BooleanSymbol | ||
expect(gnotification[:is_default]).to eq(:true) | ||
expect(gnotification[:send_reminder]).to eq(:true) | ||
expect(gnotification[:frequency]).to eq('20m') | ||
expect(gnotification[:settings]).to eq(adresses: '[email protected]') | ||
end | ||
|