Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat committed Jul 30, 2009
1 parent 031a197 commit 19d89f9
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions modules/gallery/tests/Item_Model_Test.php
Expand Up @@ -142,17 +142,11 @@ public function item_rename_wont_accept_slash_test() {
}

public function save_original_values_test() {
print "START\n";
$item = $this->create_random_item();
$item->title = "ORIGINAL_VALUE";
$item->save();

print "CHANGE\n";
$item->title = "NEW_VALUE";

//printf("<pre>%s</pre>",print_r($item,1));flush();

print "COMPARE\n";
$this->assert_same("ORIGINAL_VALUE", $item->original("title"));
$this->assert_same("NEW_VALUE", $item->title);
}
Expand Down

0 comments on commit 19d89f9

Please sign in to comment.