Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
added Require().Equal() to test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Vvaradinov committed Oct 19, 2022
1 parent 953fea4 commit 1ba4ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/evm/keeper/params_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (suite *KeeperTestSuite) TestParams() {
for _, tc := range testCases {
suite.Run(tc.name, func() {
outcome := reflect.DeepEqual(tc.paramsFun(), tc.getFun())
suite.Equal(tc.expected, outcome)
suite.Require().Equal(tc.expected, outcome)
})
}

Expand Down

0 comments on commit 1ba4ac8

Please sign in to comment.