Skip to content

Commit fdf9d9f

Browse files
committed
chore: move resource name test
1 parent b79755d commit fdf9d9f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/util/resource_name_test.go internal/util/resource_name_test.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
package util_test
1+
package util
22

33
import (
44
"testing"
5-
6-
"github.com/usememos/memos/internal/util"
75
)
86

97
func TestUIDMatcher(t *testing.T) {
@@ -28,7 +26,7 @@ func TestUIDMatcher(t *testing.T) {
2826

2927
for _, test := range tests {
3028
t.Run(test.input, func(*testing.T) {
31-
result := util.UIDMatcher.MatchString(test.input)
29+
result := UIDMatcher.MatchString(test.input)
3230
if result != test.expected {
3331
t.Errorf("For input '%s', expected %v but got %v", test.input, test.expected, result)
3432
}

0 commit comments

Comments
 (0)