]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/inbox.t
treewide: run update-copyrights from gnulib for 2019
[public-inbox.git] / t / inbox.t
index c967429023d161c0e46b5253edd4159399a5c0ae..5f86440d47f614ef89e3c0b978f2391a04d847b6 100644 (file)
--- a/t/inbox.t
+++ b/t/inbox.t
@@ -1,12 +1,12 @@
-# Copyright (C) 2016-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
 use Test::More;
 use_ok 'PublicInbox::Inbox';
-my $x = PublicInbox::Inbox->new({url => '//example.com/test/'});
+my $x = PublicInbox::Inbox->new({url => [ '//example.com/test/' ]});
 is($x->base_url, 'https://example.com/test/', 'expanded protocol-relative');
-$x = PublicInbox::Inbox->new({url => 'http://example.com/test'});
+$x = PublicInbox::Inbox->new({url => [ 'http://example.com/test' ]});
 is($x->base_url, 'http://example.com/test/', 'added trailing slash');
 
 $x = PublicInbox::Inbox->new({});