remove colons from END blocks, so they actually act like END blocks

This commit is contained in:
Colin Kuskie 2008-05-09 18:14:14 +00:00
parent 62ab00480b
commit 9c9da302f1
11 changed files with 11 additions and 11 deletions

View file

@ -243,7 +243,7 @@ is( $check, 0, 'delete worked');
}
END: {
END {
$session->db->write('delete from addressBook');
$session->db->write('delete from address');
}

View file

@ -209,7 +209,7 @@ undef $book;
}
END: {
END {
$session->db->write('delete from addressBook');
$session->db->write('delete from address');
}