From dddc7b020d626287cb38fdc17646f36f8d7015bf Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Sun, 20 Nov 2016 21:13:33 +1300 Subject: [PATCH] Corrected description in spec --- spec/controllers/photos_controller_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/controllers/photos_controller_spec.rb b/spec/controllers/photos_controller_spec.rb index 085870968..3f9f07d98 100644 --- a/spec/controllers/photos_controller_spec.rb +++ b/spec/controllers/photos_controller_spec.rb @@ -161,7 +161,7 @@ describe PhotosController do end describe "with mismatched owners" do - it "creates the planting/photo link" do + it "does not create the planting/photo link" do # members will be auto-created, and different planting = FactoryGirl.create(:planting) photo = FactoryGirl.create(:photo) @@ -170,7 +170,7 @@ describe PhotosController do Photo.last.plantings.first.should_not eq planting end - it "creates the harvest/photo link" do + it "does not create the harvest/photo link" do # members will be auto-created, and different harvest = FactoryGirl.create(:harvest) photo = FactoryGirl.create(:photo)