Skip to content
Snippets Groups Projects
Commit 69d290df authored by Graham McVicker's avatar Graham McVicker
Browse files

turned off verbosity

parent 78db673a
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ END {print "not ok 1\n" unless $loaded;}
use MultiTestDB;
our $verbose = 1;
our $verbose = 0;
$loaded = 1;
......
......@@ -8,14 +8,14 @@ BEGIN { $| = 1;
plan tests => 4;
}
my $loaded = 0;
my $loaded = 1;
END {print "not ok 1\n" unless $loaded;}
use MultiTestDB;
use TestUtils qw( debug );
$verbose = 1;
$loaded = 1;
$verbose = 0;
$loaded = 0;
ok(1);
......
......@@ -30,6 +30,7 @@ my $analysis = Bio::EnsEMBL::Analysis->new(-LOGIC_NAME => 'test');
my $slice = Bio::EnsEMBL::Slice->new(-COORD_SYSTEM => $coord_system,
-SEQ_REGION_NAME => 'X',
-SEQ_REGION_LENGTH => 15e6,
-START => 1_000_000,
-END => 2_000_000);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment