summaryrefslogtreecommitdiff
path: root/spec/migrations/add_foreign_keys_to_todos_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/migrations/add_foreign_keys_to_todos_spec.rb')
-rw-r--r--spec/migrations/add_foreign_keys_to_todos_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/migrations/add_foreign_keys_to_todos_spec.rb b/spec/migrations/add_foreign_keys_to_todos_spec.rb
index efd87173b9c..2500e2f8333 100644
--- a/spec/migrations/add_foreign_keys_to_todos_spec.rb
+++ b/spec/migrations/add_foreign_keys_to_todos_spec.rb
@@ -36,7 +36,7 @@ describe AddForeignKeysToTodos, :migration do
end
context 'add foreign key on note_id' do
- let(:note) { create(:note) } # rubocop:disable RSpec/FactoriesInMigrationSpecs
+ let(:note) { table(:notes).create! }
let!(:todo_with_note) { create_todo(note_id: note.id) }
let!(:todo_with_invalid_note) { create_todo(note_id: 4711) }
let!(:todo_without_note) { create_todo(note_id: nil) }