]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/config_limiter.t
search: allow searching within mail diffs
[public-inbox.git] / t / config_limiter.t
index 3c7ec557f2bbc617b825bce2c0c93a8c1c9da43e..f0b6528122e05fbd5d4773563ab718ba1a3e03bf 100644 (file)
@@ -25,7 +25,7 @@ my $cfgpfx = "publicinbox.test";
 
 {
        my $config = PublicInbox::Config->new({
-               'limiter.named.max' => 3,
+               'publicinboxlimiter.named.max' => 3,
                "$cfgpfx.address" => 'test@example.com',
                "$cfgpfx.mainrepo" => '/path/to/non/existent',
                "$cfgpfx.httpbackendmax" => 'named',
@@ -37,12 +37,11 @@ my $cfgpfx = "publicinbox.test";
        my $lim = $git->{-httpbackend_limiter};
        ok($lim, 'Limiter exists');
        is($lim->{max}, 3, 'limiter has expected slots');
-       $git = undef;
        $ibx->{git} = undef;
-       PublicInbox::Inbox::weaken_task;
-       $git = $ibx->git;
-       isnt($old, "$git", 'got new Git object');
-       is("$git->{-httpbackend_limiter}", "$lim", 'same limiter');
+       PublicInbox::Inbox::cleanup_task;
+       my $new = $ibx->git;
+       isnt($old, "$new", 'got new Git object');
+       is("$new->{-httpbackend_limiter}", "$lim", 'same limiter');
        is($lim->{max}, 3, 'limiter has expected slots');
 }