From 87726fe74cbba341964c84e43c4aa8a7346500b7 Mon Sep 17 00:00:00 2001 From: Kyle Banker Date: Mon, 14 Dec 2009 13:58:42 -0500 Subject: [PATCH] minor: whitespace --- test/test_collection.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_collection.rb b/test/test_collection.rb index ba461d9..c0f070b 100644 --- a/test/test_collection.rb +++ b/test/test_collection.rb @@ -91,11 +91,11 @@ class TestCollection < Test::Unit::TestCase assert_equal ["a", "b", "c"], @@test.distinct("b.c").sort end - should "filter collection with query" do + should "filter collection with query" do assert_equal [2, 3], @@test.distinct(:a, {:a => {"$gt" => 1}}).sort end - should "filter nested objects" do + should "filter nested objects" do assert_equal ["a", "b"], @@test.distinct("b.c", {"b.c" => {"$ne" => "c"}}).sort end end