Unexport filepath/path bridge types

They are of no use outside the helpers package.

See #1160
This commit is contained in:
bep
2015-05-25 13:10:26 +02:00
parent be79c35bda
commit beee679dfb
3 changed files with 26 additions and 26 deletions

View File

@@ -535,7 +535,7 @@ func TestFileAndExt(t *testing.T) {
}
for i, d := range data {
file, ext := FileAndExt(filepath.FromSlash(d.input), filepathBridge)
file, ext := FileAndExt(filepath.FromSlash(d.input), fpb)
if d.expectedFile != file {
t.Errorf("Test %d failed. Expected filename %q got %q.", i, d.expectedFile, file)
}