Repository: lucy-clownfish
Updated Branches:
  refs/heads/master 8c6d95a34 -> 4230a73b4


Fix Clownfish::Test::run_tests

Fix a stupid bug that always ran the same test.


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/28d54ae4
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/28d54ae4
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/28d54ae4

Branch: refs/heads/master
Commit: 28d54ae4f29e19914a2db1202914716bc8881ed1
Parents: 8c6d95a
Author: Nick Wellnhofer <[email protected]>
Authored: Wed Sep 7 15:57:49 2016 +0200
Committer: Nick Wellnhofer <[email protected]>
Committed: Wed Sep 7 15:58:31 2016 +0200

----------------------------------------------------------------------
 runtime/perl/lib/Clownfish/Test.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/28d54ae4/runtime/perl/lib/Clownfish/Test.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Test.pm 
b/runtime/perl/lib/Clownfish/Test.pm
index 55aeb94..9ace155 100644
--- a/runtime/perl/lib/Clownfish/Test.pm
+++ b/runtime/perl/lib/Clownfish/Test.pm
@@ -32,7 +32,7 @@ sub run_tests {
     my $suite      = Clownfish::Test::create_test_suite();
 
     return $suite->run_batch(
-        class_name => "Clownfish::Test::TestClass",
+        class_name => $class_name,
         formatter  => $formatter,
     );
 }

Reply via email to