diff options
author | Bjørn Erik Pedersen <[email protected]> | 2020-05-21 11:25:00 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2020-05-24 12:35:45 +0200 |
commit | a985efcecf44afe1d252690ec0a00cf077974f44 (patch) | |
tree | 792e19ede943310f091977edb36962d1eee596f9 /htesting | |
parent | 6c3c6686f5d3c7155e2d455b07ac8ab70f42cb88 (diff) | |
download | hugo-a985efcecf44afe1d252690ec0a00cf077974f44.tar.gz hugo-a985efcecf44afe1d252690ec0a00cf077974f44.zip |
Fix GetPage on section/bundle name overlaps
In the internal Radix we stored the directory based nodes without a traling slash, e.g. `/blog`.
The original motivation was probably to make it easy to do prefix searching: Give me all ancestors.
This, however have lead to some ambigouty with overlapping directory names.
This particular problem was, however, not possible to work around in an easy way, so from now we store these as `/blog/`.
Fixes #7301
Diffstat (limited to 'htesting')
-rw-r--r-- | htesting/hqt/checkers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htesting/hqt/checkers.go b/htesting/hqt/checkers.go index 6fb65ee47..c12f78034 100644 --- a/htesting/hqt/checkers.go +++ b/htesting/hqt/checkers.go @@ -77,7 +77,7 @@ func (c *stringChecker) Check(got interface{}, args []interface{}, note func(key return nil } - return fmt.Errorf("values are not the same text: %s", htesting.DiffStrings(s1, s2)) + return fmt.Errorf("values are not the same text: %s", strings.Join(htesting.DiffStrings(s1, s2), " | ")) } func normalizeString(s string) string { |