From 7c7d261e7e445ce0574fe113fba9caccb68f9250 Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Thu, 13 Sep 2018 23:13:03 +1200 Subject: [PATCH] Fixed last static factorybot attribtue --- spec/factories/notifications.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/factories/notifications.rb b/spec/factories/notifications.rb index 32c4aad94..5b734ed28 100644 --- a/spec/factories/notifications.rb +++ b/spec/factories/notifications.rb @@ -5,7 +5,7 @@ FactoryBot.define do sender { FactoryBot.create :member } recipient { FactoryBot.create :member } - subject "MyString" + subject { "MyString" } body { "MyText" } read { false } post