diff --git a/tests/simplenews_scheduler.test b/tests/simplenews_scheduler.test
index 34562dc..3c9fb94 100644
--- a/tests/simplenews_scheduler.test
+++ b/tests/simplenews_scheduler.test
@@ -131,10 +131,15 @@ class SimpleNewsSchedulerNodeCreationTest extends SimpleNewsSchedulerWebTestCase
     // second link with the label on the page.
     $this->clickLink($title, 1);
 
+    preg_match('|node/(\d+)$|', $this->getUrl(), $matches);
+    $edition_node = node_load($matches[1]);
+    debug($edition_node->created, 'edition node timestamp');
+    debug(strip_tags($this->drupalGetContent()), 'edition node page text');
+
     $this->assertText(t('This is a newsletter edititon. View the the master template of this newsletter here'));
-    // @todo: test commented out temporarily.
-    // @see drupal.org/node/1528586.
-    //$this->assertText(t('Submitted by @name on @date', array('@name' => format_username($this->privileged_user), '@date' => format_date($date->getTimestamp()))));
+    debug(date_default_timezone_get(), 'test timezone');
+    debug($date->getTimestamp(), 'test timestamp');
+    $this->assertText(t('Submitted by @name on @date', array('@name' => format_username($this->privileged_user), '@date' => format_date($date->getTimestamp()))));
 
     // Check sent mails.
     $mails = $this->drupalGetMails();
