From 5ca5858929b8569d7a3dbed09a2ca8bda75d363e Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 22 Jan 2014 12:21:49 +0000 Subject: [PATCH] Increase a timeout on a test to handle slow unlink calls on other filesystems --- tests/acceptance/test_happy_path.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/test_happy_path.rb b/tests/acceptance/test_happy_path.rb index 64d053e..ff9b85f 100644 --- a/tests/acceptance/test_happy_path.rb +++ b/tests/acceptance/test_happy_path.rb @@ -102,7 +102,7 @@ class TestHappyPath < Test::Unit::TestCase assert_no_match( /unrecognized/, stderr ) - Timeout.timeout(2) do @env.nbd1.join end + Timeout.timeout(10) do @env.nbd1.join end assert !File.file?( @env.filename1 ) end