From d9a38662bd3d7a1c19bef4d4e9030bb92d52fb43 Mon Sep 17 00:00:00 2001 From: Gannon McGibbon Date: Fri, 11 Feb 2022 14:53:46 -0500 Subject: [PATCH] Fix style and misspell in action dispatch executor test --- actionpack/test/dispatch/executor_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/test/dispatch/executor_test.rb b/actionpack/test/dispatch/executor_test.rb index d0bf574009..063538c24d 100644 --- a/actionpack/test/dispatch/executor_test.rb +++ b/actionpack/test/dispatch/executor_test.rb @@ -119,13 +119,13 @@ class ExecutorTest < ActiveSupport::TestCase assert_not defined?(@in_shared_context) # it's not in the test itself end - def test_body_abandonned + def test_body_abandoned total = 0 ran = 0 completed = 0 executor.to_run { total += 1; ran += 1 } - executor.to_complete { total += 1; completed += 1} + executor.to_complete { total += 1; completed += 1 } stack = middleware(proc { [200, {}, "response"] })