summaryrefslogtreecommitdiff
path: root/pkgtools/pkglint/files/path_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkgtools/pkglint/files/path_test.go')
-rw-r--r--pkgtools/pkglint/files/path_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/path_test.go b/pkgtools/pkglint/files/path_test.go
index c1efe6d3e4c..4cdc95e3ae2 100644
--- a/pkgtools/pkglint/files/path_test.go
+++ b/pkgtools/pkglint/files/path_test.go
@@ -525,8 +525,10 @@ func (s *Suite) Test_Path_Rel(c *check.C) {
test("a/../b", "c/../d", "../d")
test(".", "dir/file", "dir/file")
- test(".", "dir/subdir/", "dir/subdir") // FIXME: missing /. at the end
- test(".", "dir/subdir/.", "dir/subdir") // FIXME: missing /. at the end
+ // XXX: maybe the /. is missing at the end
+ test(".", "dir/subdir/", "dir/subdir")
+ // XXX: maybe the /. is missing at the end
+ test(".", "dir/subdir/.", "dir/subdir")
}
func (s *Suite) Test_NewCurrPath(c *check.C) {