From 19c7541a1b99d4933537dbe2f1b7fcf2e4f9fccf Mon Sep 17 00:00:00 2001 From: Pat Allan Date: Mon, 23 Jun 2008 17:11:58 -0700 Subject: [PATCH] Removing some test 'puts' statements from the index spec --- spec/unit/thinking_sphinx/index_spec.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/spec/unit/thinking_sphinx/index_spec.rb b/spec/unit/thinking_sphinx/index_spec.rb index 1d772f637..7c74bd488 100644 --- a/spec/unit/thinking_sphinx/index_spec.rb +++ b/spec/unit/thinking_sphinx/index_spec.rb @@ -179,12 +179,10 @@ @index.stub_method(:adapter => :postgres) @index.to_sql_query_range.should match(/COALESCE\(MIN.+COALESCE\(MAX/) - puts @index.to_sql_query_range end it "shouldn't add COALESCE if using MySQL" do @index.to_sql_query_range.should_not match(/COALESCE/) - puts @index.to_sql_query_range end end