Fix a typo in a test, looking at the wrong table.

This commit is contained in:
Colin Kuskie 2009-03-30 20:27:17 +00:00
parent 4e2a8bab91
commit 6f3aae261b

View file

@ -89,7 +89,7 @@ $asset->getStorageLocation->crop($asset->get("filename"), 100, 125, 10, 25);
my @stat_after = stat($filename);
is(isnt_array(\@stat_before, \@stat_after), 1, 'Image is different after crop');
my $sth = $session->db->read('describe imageAsset annotations');
my $sth = $session->db->read('describe ImageAsset annotations');
isnt($sth->hashRef, undef, 'Annotations column is defined');
is($storage->getId, $asset->get('storageId'), 'Asset updated with correct new storageId');