From 7d36c7f1b52717f439ceec17e482f7c25f7a2199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kusalananda=20K=C3=A4h=C3=A4ri?= <ak4@sanger.ac.uk> Date: Mon, 28 Jun 2010 15:48:07 +0000 Subject: [PATCH] Comments (test numbers) on some of the test that recently failed. --- modules/t/transcript.t | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/t/transcript.t b/modules/t/transcript.t index 7b86230720..05c9a5d48b 100644 --- a/modules/t/transcript.t +++ b/modules/t/transcript.t @@ -557,25 +557,24 @@ $tr->is_current(0); $tr->dbID(undef); $tr->adaptor(undef); $ta->store($tr, $g->dbID); - $tr = $ta->fetch_by_stable_id('ENST00000355555'); -ok($tr->is_current == 1); +ok($tr->is_current == 1); # 148 @transcripts = @{ $ta->fetch_all_versions_by_stable_id('ENST00000355555') }; foreach my $t (@transcripts) { next unless ($t->version == 4); - ok($t->is_current == 0); + ok($t->is_current == 0); # 149 } $tr->is_current(0); $ta->update($tr); my $t1 = $ta->fetch_by_stable_id('ENST00000355555'); -ok(!$t1); +ok(!$t1); # 150 $tr->is_current(1); $ta->update($tr); $tr = $ta->fetch_by_stable_id('ENST00000355555'); -ok($tr->is_current == 1); +ok($tr->is_current == 1); # 151 $multi->restore; -- GitLab