blob: bdfe06f780e21f300594b3c4debdb0a8ad88b986 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
From 122efb9b43fe3b918190f1e72a8055240571d58b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Thu, 23 Jun 2011 09:13:12 +0200
Subject: [PATCH] Fix garbled attachment name (RT#66576)
---
t/10_qpnames.t | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/t/10_qpnames.t b/t/10_qpnames.t
index 7c9b42c..4db5af6 100755
--- a/t/10_qpnames.t
+++ b/t/10_qpnames.t
@@ -1,3 +1,4 @@
+use utf8;
use Test;
use File::Spec;
use strict;
@@ -12,7 +13,7 @@ my ($msg) = $mb->get_messages;
my $att = $msg->get_attachments;
skip(&Mail::MboxParser::Mail::HAVE_MIMEWORDS ? 0 : "Mime::Words not installed",
- defined $msg->get_attachments("test þðüýçö characters.txt"));
+ defined $msg->get_attachments("test şğüıçö characters.txt"));
--
1.7.5.4
|