Update test to accomodate new restriction on uploading .pm files.

This commit is contained in:
Colin Kuskie 2010-08-10 20:50:00 -07:00
parent 0e7bc7ae0e
commit 6eba088fe9

View file

@ -51,7 +51,7 @@ $file->setFile( WebGUI::Test->getTestCollateralPath("WebGUI.pm") );
my $storage = $file->getStorageLocation;
is_deeply(
$storage->getFiles, ['WebGUI.pm'],
"Storage location contains only the file we added",
$storage->getFiles, ['WebGUI_pm.txt'],
"Storage location contains only the file we added, name was changed to prevent uploading of code",
);
#vim:ft=perl