mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 07:11:08 +00:00
lib/fs: Consolidate append in test
This commit is contained in:
parent
966db0d076
commit
212258d213
@ -455,27 +455,29 @@ func TestRooted(t *testing.T) {
|
||||
}
|
||||
|
||||
for _, tc := range cases {
|
||||
extraCases = append(extraCases,
|
||||
// Add case where root is backslashed, rel is forward slashed
|
||||
extraCases = append(extraCases, testcase{
|
||||
testcase{
|
||||
root: filepath.FromSlash(tc.root),
|
||||
rel: tc.rel,
|
||||
joined: tc.joined,
|
||||
ok: tc.ok,
|
||||
})
|
||||
},
|
||||
// and the opposite
|
||||
extraCases = append(extraCases, testcase{
|
||||
testcase{
|
||||
root: tc.root,
|
||||
rel: filepath.FromSlash(tc.rel),
|
||||
joined: tc.joined,
|
||||
ok: tc.ok,
|
||||
})
|
||||
},
|
||||
// and both backslashed
|
||||
extraCases = append(extraCases, testcase{
|
||||
testcase{
|
||||
root: filepath.FromSlash(tc.root),
|
||||
rel: filepath.FromSlash(tc.rel),
|
||||
joined: tc.joined,
|
||||
ok: tc.ok,
|
||||
})
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
cases = append(cases, extraCases...)
|
||||
|
Loading…
Reference in New Issue
Block a user