diff options
author | Simon McVittie <smcv@debian.org> | 2010-04-03 13:57:38 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2010-04-03 14:28:21 +0100 |
commit | 04a59b3c65e8e60805b6ed6d11d448b1d5babe64 (patch) | |
tree | 3bd1565e918b1944a18b641f70af48ffc28a2e06 /t | |
parent | 75fd08046548940c443c46bcdf9a5b0b6968b175 (diff) |
Move sort hooks to the IkiWiki::SortSpec namespace
Also rename cmpspec_translate (internal function) to sortspec_translate
for consistency.
Diffstat (limited to 't')
-rwxr-xr-x | t/pagespec_match_list.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/pagespec_match_list.t b/t/pagespec_match_list.t index 743ae4637..68112f5c0 100755 --- a/t/pagespec_match_list.t +++ b/t/pagespec_match_list.t @@ -10,7 +10,7 @@ $config{srcdir}=$config{destdir}="/dev/null"; IkiWiki::checkconfig(); { - package IkiWiki::PageSpec; + package IkiWiki::SortSpec; sub cmp_path { $_[0] cmp $_[1] } } |