File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments