refactor project structure by renaming files and updating test function signature

This commit is contained in:
2025-07-22 08:53:40 +08:00
parent a0d215fa2e
commit 1f5f67761b
18 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import (
"testing"
)
func TestAsServiceError(c) {
func TestAsServiceError(t *testing.T) {
serviceError := ErrNotFound
err := AsServiceError(serviceError)
if err.Code != serviceError.Code || err.Message != serviceError.Message {