Skip to content

Commit

Permalink
Update hashes in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Naatan committed Nov 5, 2024
1 parent f4b3170 commit fa24657
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions internal/runners/commit/ingredientcall_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ func Test_hashFuncCall(t *testing.T) {
script: simpleScript,
seed: "",
},
// If this fails you can update it to actual if you are sure your logic changes would result in the hash being different
"6a7c7bd03f10e832",
},
{
Expand All @@ -86,15 +87,17 @@ func Test_hashFuncCall(t *testing.T) {
script: simpleAlteredScript,
seed: "",
},
"1471d1796a57e938",
// If this fails you can update it to actual if you are sure your logic changes would result in the hash being different
"6003277e065496c1",
},
{
"Simple With Seed",
args{
script: simpleScript,
seed: "seed",
},
"a9c1a37b5dd6f0d6",
// If this fails you can update it to actual if you are sure your logic changes would result in the hash being different
"ee89d52f355f9985",
},
}
for _, tt := range tests {
Expand Down

0 comments on commit fa24657

Please sign in to comment.