Merge pull request #11075 from vipulnsward/remove_record

Remove `another_contract` as it isn't being used
This commit is contained in:
Yves Senn 2013-06-24 08:38:08 -07:00
commit 359a219664

@ -1351,7 +1351,7 @@ def test_get_ids_for_association_on_new_record_does_not_try_to_find_records
def test_set_ids_for_association_on_new_record_applies_association_correctly
contract_a = Contract.create!
contract_b = Contract.create!
another_contract = Contract.create!
Contract.create! # another contract
company = Company.new(:name => "Some Company")
company.contract_ids = [contract_a.id, contract_b.id]