about summary refs log tree commit homepage
path: root/t/config.t
diff options
context:
space:
mode:
Diffstat (limited to 't/config.t')
-rw-r--r--t/config.t10
1 files changed, 5 insertions, 5 deletions
diff --git a/t/config.t b/t/config.t
index cb5ccee2..50bc8d6d 100644
--- a/t/config.t
+++ b/t/config.t
@@ -25,12 +25,12 @@ my $tmpdir = tempdir(CLEANUP => 1);
         ok(-r $f, "$f is readable");
 
         my $cfg = PublicInbox::Config->new($f);
-        is_deeply($cfg->lookup('bugs@public-inbox.org'), {
-                'mainrepo' => '/home/pi/bugs-main.git',
-                'address' => 'bugs@public-inbox.org',
-                -primary_address => 'bugs@public-inbox.org',
+        is_deeply($cfg->lookup('meta@public-inbox.org'), {
+                'mainrepo' => '/home/pi/meta-main.git',
+                'address' => 'meta@public-inbox.org',
+                -primary_address => 'meta@public-inbox.org',
                 'description' => 'development discussion',
-                'listname' => 'bugs',
+                'listname' => 'meta',
         }, "lookup matches expected output");
 
         is($cfg->lookup('blah@example.com'), undef,