Skip to content

Commit

Permalink
added error catching
Browse files Browse the repository at this point in the history
  • Loading branch information
okankoAMZ committed Aug 4, 2022
1 parent e9013d4 commit 6721b16
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion integration/test/performancetest/performance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -266,5 +266,8 @@ func TestUpdateCommit(t*testing.T){
return
}

dynamoDB.UpdateReleaseTag(releaseHash,releaseName)
err := dynamoDB.UpdateReleaseTag(releaseHash,releaseName)
if err!=nil{
t.Fatalf("Error: %s",err)
}
}

0 comments on commit 6721b16

Please sign in to comment.