From 743b63c8c07509171eafe53125aa36b82c29b07d Mon Sep 17 00:00:00 2001 From: Bogdan Gusiev Date: Tue, 22 Jan 2013 16:31:38 +0200 Subject: [PATCH] Remove dup line --- spec/datagrid/drivers/active_record_spec.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/spec/datagrid/drivers/active_record_spec.rb b/spec/datagrid/drivers/active_record_spec.rb index e0f61830..6aa4a587 100644 --- a/spec/datagrid/drivers/active_record_spec.rb +++ b/spec/datagrid/drivers/active_record_spec.rb @@ -13,7 +13,6 @@ it "should convert any scope to AR::Relation" do subject.to_scope(Entry).should be_a(ActiveRecord::Relation) subject.to_scope(Entry.limit(5)).should be_a(ActiveRecord::Relation) - subject.to_scope(Entry.limit(5)).should be_a(ActiveRecord::Relation) subject.to_scope(Group.create!.entries).should be_a(ActiveRecord::Relation) end