mirror of
https://github.com/usememos/memos.git
synced 2025-09-11 16:24:29 +08:00
chore: move resource name test
This commit is contained in:
parent
b79755dd09
commit
fdf9d9f506
1 changed files with 2 additions and 4 deletions
|
@ -1,9 +1,7 @@
|
|||
package util_test
|
||||
package util
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/usememos/memos/internal/util"
|
||||
)
|
||||
|
||||
func TestUIDMatcher(t *testing.T) {
|
||||
|
@ -28,7 +26,7 @@ func TestUIDMatcher(t *testing.T) {
|
|||
|
||||
for _, test := range tests {
|
||||
t.Run(test.input, func(*testing.T) {
|
||||
result := util.UIDMatcher.MatchString(test.input)
|
||||
result := UIDMatcher.MatchString(test.input)
|
||||
if result != test.expected {
|
||||
t.Errorf("For input '%s', expected %v but got %v", test.input, test.expected, result)
|
||||
}
|
Loading…
Add table
Reference in a new issue