mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
refactor: use stdlib filepath.FromSlash
This commit is contained in:
parent
0e01f9a0f9
commit
464880dd31
2 changed files with 4 additions and 6 deletions
|
@ -2,8 +2,7 @@ package persistence
|
|||
|
||||
import (
|
||||
"context"
|
||||
"os"
|
||||
"strings"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/astaxie/beego/orm"
|
||||
|
@ -79,7 +78,7 @@ var (
|
|||
)
|
||||
|
||||
func P(path string) string {
|
||||
return strings.ReplaceAll(path, "/", string(os.PathSeparator))
|
||||
return filepath.FromSlash(path)
|
||||
}
|
||||
|
||||
var _ = Describe("Initialize test DB", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue