@@ -1,5 +1,8 @@
Revision history for Perl module TestRail::API
+0.030 2015-07-31 TEODESIAN
+ - Fix testrail-tests, was calling function in incorrect namespace
+
0.029 2015-07-30 TEODESIAN
- Add bulkAddResults function to TestRail::API
- Add new script testrail-bulk-mark-results and it's backend TestRail::Utils::Results
@@ -120,7 +120,7 @@ TestRail::Utils::interrogateUser($opts,qw{apiurl user password project run});
my $tr = TestRail::API->new($opts->{apiurl},$opts->{user},$opts->{password},$opts->{'encoding'},$opts->{'debug'});
-my ($cases) = TestRail::Utils::getTests($opts,$tr);
+my ($cases) = TestRail::Utils::Find::getTests($opts,$tr);
die "No cases in TestRail!\n" unless $cases;
$opts->{'names-only'} = 1;