diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-20 20:39:32 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-20 20:39:32 +0000 |
commit | 39248cd32ede354aec38e617415b432570f4f454 (patch) | |
tree | 05a90075597342753185578ab8be68523e8f8d46 | |
parent | 6b1a1834ad1715145f047790c8391b8a5558bece (diff) |
Removes variable that isn't required
-rw-r--r-- | spec/models/operation_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/operation_spec.rb b/spec/models/operation_spec.rb index a46a528..1293524 100644 --- a/spec/models/operation_spec.rb +++ b/spec/models/operation_spec.rb @@ -2,7 +2,7 @@ require 'rails_helper' RSpec.describe Operation, type: :model do let(:organisation) { - org = build(:organisation) + build(:organisation) # Operation.create!( # name: "MyString" # ) |