Accepting request 743468 from home:tinita:branches:devel:languages:perl

- Remove patch test-more-no-plan-and-note-removal.patch
   * Not used and not needed anymore

OBS-URL: https://build.opensuse.org/request/show/743468
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Plack-Middleware-Debug?expand=0&rev=6
This commit is contained in:
Lars Vogdt
2019-10-29 08:37:28 +00:00
committed by Git OBS Bridge
parent 1ad6b08d6e
commit 0ece8f6d4a
2 changed files with 6 additions and 46 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Oct 28 10:48:44 UTC 2019 - Tina Mueller <tina.mueller@suse.com>
- Remove patch test-more-no-plan-and-note-removal.patch
* Not used and not needed anymore
-------------------------------------------------------------------
Wed Apr 3 07:24:42 UTC 2019 - Stephan Kulow <coolo@suse.com>

View File

@@ -1,46 +0,0 @@
---
t/01_basic.t | 5 ++---
t/utf8.t | 4 +---
2 files changed, 3 insertions(+), 6 deletions(-)
Index: Plack-Middleware-Debug-0.10/t/01_basic.t
===================================================================
--- Plack-Middleware-Debug-0.10.orig/t/01_basic.t 2010-01-14 22:34:23.000000000 -0500
+++ Plack-Middleware-Debug-0.10/t/01_basic.t 2010-09-21 23:16:34.072666048 -0400
@@ -4,10 +4,10 @@
use Plack::Test;
use Plack::Builder;
use HTTP::Request::Common;
-use Test::More;
+use Test::More qw(no_plan);
my @content_types = ('text/html', 'text/html; charset=utf8',);
for my $content_type (@content_types) {
- note "Content-Type: $content_type";
+ #note "Content-Type: $content_type";
my $app = sub {
return [
200, [ 'Content-Type' => $content_type ],
@@ -29,4 +29,3 @@
}
};
}
-done_testing;
Index: Plack-Middleware-Debug-0.10/t/utf8.t
===================================================================
--- Plack-Middleware-Debug-0.10.orig/t/utf8.t 2010-01-30 08:13:09.000000000 -0500
+++ Plack-Middleware-Debug-0.10/t/utf8.t 2010-09-21 23:17:17.836663896 -0400
@@ -4,7 +4,7 @@
use Plack::Test;
use Plack::Middleware::Debug;
use HTTP::Request::Common;
-use Test::More;
+use Test::More qw(no_plan);
my $app = sub {
my $env = shift;
@@ -24,5 +24,3 @@
like $res->content, qr!<h1>テスト</h1>!;
like $res->content, qr!<td>test.string</td>\s*<td>&#x30c6;</td>!s;
};
-
-done_testing;