From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 605451F462 for ; Thu, 20 Jun 2019 00:23:32 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] t/httpd-corner.t: fix braino :x Date: Thu, 20 Jun 2019 00:23:32 +0000 Message-Id: <20190620002332.20975-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Plack is for Perl, Rack is for Ruby; this a Perl project :x --- t/httpd-corner.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/httpd-corner.t b/t/httpd-corner.t index 7c219943..56e5a5bc 100644 --- a/t/httpd-corner.t +++ b/t/httpd-corner.t @@ -1,7 +1,7 @@ -# Copyright (C) 2016-2018 all contributors +# Copyright (C) 2016-2019 all contributors # License: AGPL-3.0+ # note: our HTTP server should be standalone and capable of running -# generic Rack apps. +# generic PSGI/Plack apps. use strict; use warnings; use Test::More; -- EW