about summary refs log tree commit homepage
path: root/t/init.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-10-04 19:12:34 +0000
committerEric Wong <e@80x24.org>2022-10-05 20:24:44 +0000
commita002384a74382df2649d6a1f8dfba4f291af032e (patch)
tree1106206df2c10fc21adec29b1c3dcbcff9075d3d /t/init.t
parenta93c7e471ca70bdb476c2285cf894e319b38f160 (diff)
downloadpublic-inbox-a002384a74382df2649d6a1f8dfba4f291af032e.tar.gz
We'll be using these functions for serving coderepos natively
without cgit.
Diffstat (limited to 't/init.t')
-rw-r--r--t/init.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/init.t b/t/init.t
index 6f4c9dce..460c83f3 100644
--- a/t/init.t
+++ b/t/init.t
@@ -102,7 +102,7 @@ sub quiet_fail {
         umask($umask) // xbail "umask: $!";
         ok(-d "$tmpdir/a/b/c/d", 'directory created');
         my $desc = "$tmpdir/a/b/c/d/description";
-        is(PublicInbox::Inbox::try_cat($desc),
+        is(PublicInbox::Git::try_cat($desc),
                 "public inbox for abcd\@example.com\n", 'description set');
         my $mode = (stat($desc))[2];
         is(sprintf('0%03o', $mode & 0777), '0644',