Skip to content

Commit 35be5dc

Browse files
author
Sami Alajrami
committed
Fix linting error
1 parent afdd44e commit 35be5dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/merkely/fingerprint_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ func (suite *FingerprintTestSuite) SetupSuite() {
2525
}
2626

2727
func (suite *FingerprintTestSuite) TearDownSuite() {
28-
utils.RemoveDockerImage(imageName)
28+
err := utils.RemoveDockerImage(imageName)
29+
require.NoError(suite.T(), err, "removing the docker image should pass")
2930
}
3031

3132
func (suite *FingerprintTestSuite) TestCmdRun() {

0 commit comments

Comments
 (0)