Skip to content
Snippets Groups Projects
Commit fa871f29 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Removed debug

parent 0ac47eda
No related branches found
No related tags found
No related merge requests found
......@@ -80,13 +80,11 @@ $analysis->logic_name('dummy_analysis');
$analysis->created( "2005-10-28 10:28:29");
$analysis_ad->store($analysis);
$dbID = $analysis->dbID();
print "## description before: " . $analysis->description() . "\n";
$analysis->description("updated description");
$analysis_ad->update($analysis);
$analysis_updated = $analysis_ad->fetch_by_dbID($dbID);
ok($analysis_updated->description() eq "updated description");
print "## description after: " . $analysis_updated->description() . "\n";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment