<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -168,8 +168,6 @@ ActiveRecord::Schema.define(:version =&gt; 75) do
     t.text    &quot;ping_urls&quot;
     t.integer &quot;articles_per_page&quot;,                 :default =&gt; 15
     t.string  &quot;host&quot;
-    t.string  &quot;akismet_key&quot;,        :limit =&gt; 100
-    t.string  &quot;akismet_url&quot;
     t.boolean &quot;approve_comments&quot;
     t.integer &quot;comment_age&quot;
     t.string  &quot;timezone&quot;
@@ -179,6 +177,8 @@ ActiveRecord::Schema.define(:version =&gt; 75) do
     t.string  &quot;tag_path&quot;
     t.string  &quot;tag_layout&quot;
     t.string  &quot;current_theme_path&quot;
+    t.string  &quot;akismet_key&quot;,        :limit =&gt; 100
+    t.string  &quot;akismet_url&quot;
   end
 
   add_index &quot;sites&quot;, [&quot;host&quot;], :name =&gt; &quot;index_sites_on_host&quot;</diff>
      <filename>db/schema.rb</filename>
    </modified>
    <modified>
      <diff>@@ -111,11 +111,11 @@ class ArticleTest &lt; Test::Unit::TestCase
 
   def test_comment_expiration_date
     a = create_fake_article
-    assert_equal 5.days.from_now.utc.to_i, a.comments_expired_at.to_i
+    assert_equal((a.published_at + 10.days), a.comments_expired_at)
   end
 
   def test_comment_expiry
-    a = create_fake_article(5.days.from_now)
+    a = create_fake_article(5.days.from_now.utc)
     assert !a.accept_comments?
     a.published_at = 5.days.ago.utc
     assert  a.accept_comments?
@@ -174,7 +174,7 @@ class ArticleTest &lt; Test::Unit::TestCase
       Article.create options.reverse_merge(:user_id =&gt; 1, :site_id =&gt; 1, :title =&gt; 'foo')
     end
     
-    def create_fake_article(time = 5.days.ago)
+    def create_fake_article(time = 5.days.ago.utc)
       returning Article.new(:comment_age =&gt; 10, :published_at =&gt; time.utc) do |a|
         def a.new_record?() false ; end
       end</diff>
      <filename>test/unit/article_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c62b1a257ddecd3d6b72b9e77c914bb7e2358d65</id>
    </parent>
  </parents>
  <author>
    <name>rick</name>
    <email>technoweenie@gmail.com</email>
  </author>
  <url>http://github.com/technoweenie/mephisto/commit/61c7122a62226b4d146656ed9f484c42d82eadb1</url>
  <id>61c7122a62226b4d146656ed9f484c42d82eadb1</id>
  <committed-date>2008-03-10T23:50:03-07:00</committed-date>
  <authored-date>2008-03-10T23:46:44-07:00</authored-date>
  <message>fix comment time comparison test bug</message>
  <tree>bc9dafb073613f326c5358863ead5a1f1bcdf7fa</tree>
  <committer>
    <name>rick</name>
    <email>technoweenie@gmail.com</email>
  </committer>
</commit>
