From 4d98d1a90262c7a414971896963b3a4d95ce4968 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Tue, 22 Oct 2013 10:15:37 -0400 Subject: [PATCH] Tell 01-OpenILS-Application.t it contains utf8 'use utf8;' tells the script that it contains UTF8 characters, not binary bytes, and resolves a test problem. Signed-off-by: Dan Scott --- Open-ILS/src/perlmods/t/01-OpenILS-Application.t | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/src/perlmods/t/01-OpenILS-Application.t b/Open-ILS/src/perlmods/t/01-OpenILS-Application.t index a4367f6ca9..6b30fbbe80 100644 --- a/Open-ILS/src/perlmods/t/01-OpenILS-Application.t +++ b/Open-ILS/src/perlmods/t/01-OpenILS-Application.t @@ -1,5 +1,6 @@ #!perl -T +use utf8; use Test::More tests => 14; BEGIN { -- 2.11.0