Skip to content

Commit

Permalink
some corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Feb 28, 2024
1 parent 796e6cc commit ee48678
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func getOrCreateNewServiceInterpretationTimeValueRepository(
if err != nil {
return stacktrace.Propagate(err, "An error occurred while creating the bucket for the service interpretation time value repository")
}
logrus.Debugf("Recipe result bucket: '%+v'", bucket)
logrus.Debugf("Service value interpretation time store bucket: '%+v'", bucket)

return nil
}); err != nil {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const (
)

func TestAddAndGetTest(t *testing.T) {
repository := getRecipeResultRepositoryForTest(t)
repository := getServiceInterpretationTimeValueRepository(t)
require.NotNil(t, repository)

applicationProtocol := ""
Expand Down Expand Up @@ -53,7 +53,7 @@ func TestAddAndGetTest(t *testing.T) {
require.Equal(t, expectedService.String(), actualService.String())
}

func getRecipeResultRepositoryForTest(t *testing.T) *serviceInterpretationValueRepository {
func getServiceInterpretationTimeValueRepository(t *testing.T) *serviceInterpretationValueRepository {
file, err := os.CreateTemp("/tmp", "*.db")
defer func() {
err = os.Remove(file.Name())
Expand Down

0 comments on commit ee48678

Please sign in to comment.