summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/01-basic.t')
-rw-r--r--t/01-basic.t4
1 files changed, 2 insertions, 2 deletions
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/');
}
}