Skip to content

Commit 594aa4d

Browse files
committed
Fix typo in specs
1 parent 9498e0e commit 594aa4d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

spec/plugins/active_record_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ def final_step(_state)= @notifier.final_step
10101010
it "doesn't include the model's key on the operation's context" do
10111011
expect(operation.context).to_not include(:my_model)
10121012
end
1013-
it "fetchs the model from the _DB" do
1013+
it "fetchs the model from the DB" do
10141014
fetched_model = build_ar_model(email: "an@email.com")
10151015

10161016
expect(result.value).to eq(fetched_model)
@@ -1024,7 +1024,7 @@ def final_step(_state)= @notifier.final_step
10241024
it "includes the model's key on the operation's context" do
10251025
expect(operation.context).to include(my_model: existing_model)
10261026
end
1027-
it "uses the model from the context and avoid querying the _DB" do
1027+
it "uses the model from the context and avoid querying the DB" do
10281028
MyModel.delete_all
10291029

10301030
expect(result.value).to eq(existing_model)
@@ -1040,7 +1040,7 @@ def final_step(_state)= @notifier.final_step
10401040
end
10411041
let(:operation) { OwOperation.new(ctx) }
10421042

1043-
it "fetches the model from the _DB anyway" do
1043+
it "fetches the model from the DB anyway" do
10441044
fetched_model = build_ar_model(email: "an@email.com")
10451045

10461046
expect(operation.context).to include(my_model: existing_model)

0 commit comments

Comments
 (0)