Skip to content

Commit

Permalink
Added require not nil for runResult
Browse files Browse the repository at this point in the history
  • Loading branch information
leoporoli committed Nov 13, 2023
1 parent dd844c0 commit 111d585
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ func (suite *StartosisPackageTestSuite) TestStartosisNoMainBranchRemotePackage_R
runResult, _ := suite.RunRemotePackage(ctx, noMainBranchWithRelativeImportRemotePackage)

t := suite.T()
require.NotNil(t, runResult)
require.Nil(t, runResult.InterpretationError)
require.Empty(t, runResult.ValidationErrors)
require.Nil(t, runResult.ExecutionError)
Expand Down

0 comments on commit 111d585

Please sign in to comment.