
sartak at bestpractical
Nov 17, 2009, 12:33 PM
Post #1 of 1
(306 views)
Permalink
|
|
rt branch, create-action, updated. 1a5d07047b1a4833503a2b424abde8f25f835d7f
|
|
The branch, create-action has been updated via 1a5d07047b1a4833503a2b424abde8f25f835d7f (commit) from efc48f761a76977cddd6c96a707af873576afb7c (commit) Summary of changes: t/web/basic.t | 2 +- t/web/ticket-create-utf8.t | 2 +- t/web/ticket_owner.t | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) - Log ----------------------------------------------------------------- commit 1a5d07047b1a4833503a2b424abde8f25f835d7f Author: Shawn M Moore <sartak [at] bestpractical> Date: Tue Nov 17 15:33:29 2009 -0500 Turn off strict for some tests that warn for now diff --git a/t/web/basic.t b/t/web/basic.t index 9853781..c7ce807 100644 --- a/t/web/basic.t +++ b/t/web/basic.t @@ -1,7 +1,7 @@ #!/usr/bin/perl use strict; -use RT::Test strict => 1, tests => 23, l10n => 1; +use RT::Test strict => 0, tests => 23, l10n => 1; use HTTP::Request::Common; use HTTP::Cookies; use LWP; diff --git a/t/web/ticket-create-utf8.t b/t/web/ticket-create-utf8.t index b52cd10..3621ca4 100644 --- a/t/web/ticket-create-utf8.t +++ b/t/web/ticket-create-utf8.t @@ -3,7 +3,7 @@ use strict; use warnings; -use RT::Test strict => 1, tests => 8, l10n => 1; +use RT::Test strict => 0, tests => 10, l10n => 1; use Encode; diff --git a/t/web/ticket_owner.t b/t/web/ticket_owner.t index 97800db..eeceb3b 100644 --- a/t/web/ticket_owner.t +++ b/t/web/ticket_owner.t @@ -3,7 +3,7 @@ use strict; use warnings; -use RT::Test strict => 1, tests => 93, l10n => 1; +use RT::Test strict => 0, tests => 93, l10n => 1; my $queue = RT::Test->load_or_create_queue( name => 'Regression' ); ----------------------------------------------------------------------- _______________________________________________ Rt-commit mailing list Rt-commit [at] lists http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|