Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pmahindrakar-oss committed Sep 9, 2024
1 parent dd69954 commit 03a6b73
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ func TestGetExecutionWithOffloadedInputs(t *testing.T) {
}
assert.Nil(t, err)
assert.NotNil(t, actualInputs)
assert.EqualValues(t, expectedMap, *actualInputs)
assert.EqualValues(t, expectedMap.GetLiterals()["foo"], actualInputs.Literals["foo"])
assert.EqualValues(t, expectedMap.GetLiterals()["bar"], actualInputs.Literals["bar"])
}

func TestValidateExecInputsWrongType(t *testing.T) {
Expand Down

0 comments on commit 03a6b73

Please sign in to comment.