summaryrefslogtreecommitdiffstats
path: root/test/network/handler/configuration.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/network/handler/configuration.rb')
-rwxr-xr-xtest/network/handler/configuration.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/network/handler/configuration.rb b/test/network/handler/configuration.rb
index 525db5e6a..98c3bdcde 100755
--- a/test/network/handler/configuration.rb
+++ b/test/network/handler/configuration.rb
@@ -170,7 +170,7 @@ class TestHandlerConfiguration < Test::Unit::TestCase
handler.expects(:details).with(:client).returns(false)
config.expects(:node_handler).returns(handler)
interp = Object.new
- interp.expects(:configuration_version).returns(:version)
+ interp.expects(:parsedate).returns(:version)
config.expects(:interpreter).returns(interp)
assert_equal(:version, config.version(:client), "Did not return configuration version")
@@ -182,7 +182,7 @@ class TestHandlerConfiguration < Test::Unit::TestCase
config.expects(:update_node_check).with(node)
config.expects(:node_handler).returns(handler)
interp = Object.new
- interp.expects(:configuration_version).returns(:version)
+ interp.expects(:parsedate).returns(:version)
config.expects(:interpreter).returns(interp)
assert_equal(:version, config.version(:client), "Did not return configuration version")
end