Skip to content

Commit

Permalink
Fix import in test
Browse files Browse the repository at this point in the history
  • Loading branch information
visill committed Oct 18, 2024
1 parent 9d5149c commit f4e6161
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/proc/delete_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (

"github.com/stretchr/testify/assert"
"github.com/yezzey-gp/yproxy/config"
"github.com/yezzey-gp/yproxy/pkg/database"
"github.com/yezzey-gp/yproxy/pkg/message"
mock "github.com/yezzey-gp/yproxy/pkg/mock"
"github.com/yezzey-gp/yproxy/pkg/object"
Expand Down Expand Up @@ -46,7 +47,7 @@ func TestReworkingName(t *testing.T) {
}

for _, testCase := range testCases {
ans := proc.ReworkFileName(testCase.input)
ans := database.ReworkFileName(testCase.input)
assert.Equal(t, testCase.expected, ans)
}
}
Expand Down

0 comments on commit f4e6161

Please sign in to comment.