about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-06-14 00:10:51 +0000
committerEric Wong <e@80x24.org>2017-06-15 23:13:00 +0000
commit92afb41e15dfdcda291b432173bd49ddfc49614a (patch)
tree4006a4b589d35255ea0331fe2b2d0094565fc094 /t
parent1f15ff775a967794ff3e409722b72e5684f2c0a2 (diff)
downloadpublic-inbox-92afb41e15dfdcda291b432173bd49ddfc49614a.tar.gz
We'll be adding more reply options for centralized mailing
lists.  So split out the logic so it's easy-to-find.
Organizing code is hard :<
Diffstat (limited to 't')
-rw-r--r--t/view.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/view.t b/t/view.t
index 2181b5ef..abd00018 100644
--- a/t/view.t
+++ b/t/view.t
@@ -15,7 +15,7 @@ my @q = (
 while (@q) {
         my $input = shift @q;
         my $expect = shift @q;
-        my $res = PublicInbox::View::squote_maybe($input);
+        my $res = PublicInbox::Reply::squote_maybe($input);
         is($res, $expect, "quote $input => $res");
 }