Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the NewRelic-Agent CPAN distribution.

Report information
The Basics
Id: 106449
Status: resolved
Priority: 0/
Queue: NewRelic-Agent

People
Owner: Nobody in particular
Requestors: TIMB [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: t/01-basic.t test fails due to hardcoded assumption of perl version being 5.014002 [PATCH]
# Failed test 'Defaulted app version to "5.014002"' # at t/01-basic.t line 12. # got: '5.020002' # expected: '5.014002' # Looks like you failed 1 test of 9. Here's a patch: --- t/01-basic.t.orig 2015-08-14 12:26:57.057412205 +0000 +++ t/01-basic.t 2015-08-14 12:27:14.871411595 +0000 @@ -11,4 +11,4 @@ 'Defaulted app language to "perl"'; - is $o->get_app_language_version => '5.014002', - 'Defaulted app version to "5.014002"'; + is $o->get_app_language_version => $], + "Defaulted app version to '$]'";