Procházet zdrojové kódy

Fix issue in testrail-tests

George S. Baugh před 10 roky
rodič
revize
34c64185fb
2 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. 3 0
      Changes
  2. 1 1
      bin/testrail-tests

+ 3 - 0
Changes

@@ -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

+ 1 - 1
bin/testrail-tests

@@ -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;