From 6f3aae261ba31d979fbbe73d2e8fddffbaf55c48 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 30 Mar 2009 20:27:17 +0000 Subject: [PATCH] Fix a typo in a test, looking at the wrong table. --- t/Asset/File/Image.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Asset/File/Image.t b/t/Asset/File/Image.t index 90307548d..9d5ac63f8 100644 --- a/t/Asset/File/Image.t +++ b/t/Asset/File/Image.t @@ -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');