From 02c87fd5b686f23fb0b1a68f70dc14033d2c3c38 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 31 Dec 2010 15:25:37 -0600 Subject: use psgi-local: rather than psgi: --- t/01-basic.t | 4 ++-- t/02-inputs.t | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 't') diff --git a/t/01-basic.t b/t/01-basic.t index e138e10..0be56ac 100644 --- a/t/01-basic.t +++ b/t/01-basic.t @@ -42,12 +42,12 @@ test_tcp_plackup( is($client->app_for('bar'), undef, "didn't get nonexistent app"); { - my $res = $client->get('psgi://foo/'); + my $res = $client->get('psgi-local://foo/'); response_is($res, 200, ['Content-Type' => 'text/plain'], '/'); } { - my $res = $client->get('psgi://foo/foo'); + my $res = $client->get('psgi-local://foo/foo'); response_is($res, 200, ['Content-Type' => 'text/plain'], 'oof/'); } } diff --git a/t/02-inputs.t b/t/02-inputs.t index bafe960..0bedc65 100644 --- a/t/02-inputs.t +++ b/t/02-inputs.t @@ -44,7 +44,7 @@ test_tcp_plackup( my $apps = { foo => eval $app, }; - my $base_uri = 'psgi://foo'; + my $base_uri = 'psgi-local://foo'; test_responses($base_uri, Plack::Client->new(apps => $apps)); } -- cgit v1.2.3-54-g00ecf