Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
FemiNoviaLina committed Oct 1, 2024
1 parent 98158f2 commit 0764db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/store/postgres/rule_repository_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (s *RuleRepositoryTestSuite) TestUpsert() {
Description: "should create a resource config",
Name: "test",
Config: rule.Ruleset{
Rules: []rule.Rule{rule.Rule{}},
Rules: []rule.Rule{{}},
},
Expected: rule.RuleConfig{
ID: 2,
Expand All @@ -68,7 +68,7 @@ func (s *RuleRepositoryTestSuite) TestUpsert() {
Description: "should update a resource config",
Name: s.ruleConfig[0].Name,
Config: rule.Ruleset{
Rules: []rule.Rule{rule.Rule{}},
Rules: []rule.Rule{{}},
},
Expected: rule.RuleConfig{
ID: s.ruleConfig[0].ID,
Expand Down

0 comments on commit 0764db3

Please sign in to comment.