diff options
author | Eric Wong <e@80x24.org> | 2019-10-15 00:38:06 +0000 |
---|---|---|
committer | Eric Wong <e@80x24.org> | 2019-10-15 20:26:41 +0000 |
commit | 1317fb7b4ace03f6d9dfb1a42ee5f9371a1bf913 (patch) | |
tree | f46b2e82a2edd849b3ded014bb4b209e778e6a2f /t/psgi_multipart_not.t | |
parent | 53a8e32b97985803e9de12c4312a86a8850208b3 (diff) | |
download | public-inbox-1317fb7b4ace03f6d9dfb1a42ee5f9371a1bf913.tar.gz |
Rewrite a bunch of tests to use ordered input (emulating "git config -l" output) so we can always walk sections in the order they were given in the config file.
Diffstat (limited to 't/psgi_multipart_not.t')
-rw-r--r-- | t/psgi_multipart_not.t | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/psgi_multipart_not.t b/t/psgi_multipart_not.t index ae248de3..2670c47a 100644 --- a/t/psgi_multipart_not.t +++ b/t/psgi_multipart_not.t @@ -42,11 +42,11 @@ ok($im->add($mime), 'added broken multipart message'); $im->done; my $cfgpfx = "publicinbox.v2test"; -my $cfg = { - "$cfgpfx.address" => $ibx->{-primary_address}, - "$cfgpfx.mainrepo" => $repo, -}; -my $config = PublicInbox::Config->new($cfg); +my $cfg = <<EOF; +$cfgpfx.address=$ibx->{-primary_address} +$cfgpfx.mainrepo=$repo +EOF +my $config = PublicInbox::Config->new(\$cfg); my $www = PublicInbox::WWW->new($config); my ($res, $raw); |