mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Use filepath.Join instead of path.Join for file system file operations (#33978)
This commit is contained in:
		| @@ -71,7 +71,7 @@ func TestListUnadoptedRepositories_ListOptions(t *testing.T) { | ||||
| 	username := "user2" | ||||
| 	unadoptedList := []string{path.Join(username, "unadopted1"), path.Join(username, "unadopted2")} | ||||
| 	for _, unadopted := range unadoptedList { | ||||
| 		_ = os.Mkdir(path.Join(setting.RepoRootPath, unadopted+".git"), 0o755) | ||||
| 		_ = os.Mkdir(filepath.Join(setting.RepoRootPath, unadopted+".git"), 0o755) | ||||
| 	} | ||||
|  | ||||
| 	opts := db.ListOptions{Page: 1, PageSize: 1} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user