summaryrefslogtreecommitdiff
path: root/test/drb/test_drbunix.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/drb/test_drbunix.rb')
-rw-r--r--test/drb/test_drbunix.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/drb/test_drbunix.rb b/test/drb/test_drbunix.rb
index 5b93f52d2c..1fba033aca 100644
--- a/test/drb/test_drbunix.rb
+++ b/test/drb/test_drbunix.rb
@@ -20,7 +20,8 @@ end
class TestDRbUNIXCore < Test::Unit::TestCase
include DRbCore
def setup
- @ext = DRbUNIXService.ext_service('ut_drb_drbunix.rb')
+ @service_name = 'ut_drb_drbunix.rb'
+ @ext = DRbUNIXService.ext_service(@service_name)
@there = @ext.front
end
@@ -37,7 +38,8 @@ end
class TestDRbUNIXAry < Test::Unit::TestCase
include DRbAry
def setup
- @ext = DRbUNIXService.ext_service('ut_array_drbunix.rb')
+ @service_name = 'ut_array_drbunix.rb'
+ @ext = DRbUNIXService.ext_service(@service_name)
@there = @ext.front
end
end