about summary refs log tree commit homepage
path: root/test/exec
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2018-04-30 07:54:19 +0000
committerEric Wong <e@80x24.org>2018-05-01 10:19:17 +0000
commit6802a50bbb68dd5450749d72f053a56560c19d89 (patch)
tree84b940a63cafb9ac57c6b73ff98f4c059cfef65a /test/exec
parent8cc911d4ff667c3f1af28db4c565cdbe22433e34 (diff)
downloadunicorn-6802a50bbb68dd5450749d72f053a56560c19d89.tar.gz
Ruby trunk started warning about more mismatched indentations
starting around r62836.
Diffstat (limited to 'test/exec')
-rw-r--r--test/exec/test_exec.rb13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/exec/test_exec.rb b/test/exec/test_exec.rb
index 9723c5c..8a6b43e 100644
--- a/test/exec/test_exec.rb
+++ b/test/exec/test_exec.rb
@@ -193,8 +193,8 @@ EOF
     assert_equal other.path, results.first
 
     Process.kill(:QUIT, pid)
-    ensure
-      FileUtils.rmtree(other.path)
+  ensure
+    FileUtils.rmtree(other.path)
   end
 
   def test_working_directory
@@ -229,8 +229,8 @@ EOF
     assert_equal other.path, results.first
 
     Process.kill(:QUIT, pid)
-    ensure
-      FileUtils.rmtree(other.path)
+  ensure
+    FileUtils.rmtree(other.path)
   end
 
   def test_working_directory_controls_relative_paths
@@ -271,11 +271,10 @@ EOF
     wait_master_ready("#{other.path}/stderr_log_here")
 
     Process.kill(:QUIT, pid)
-    ensure
-      FileUtils.rmtree(other.path)
+  ensure
+    FileUtils.rmtree(other.path)
   end
 
-
   def test_exit_signals
     %w(INT TERM QUIT).each do |sig|
       File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }