about summary refs log tree commit homepage
path: root/test/test_configurator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_configurator.rb')
-rw-r--r--test/test_configurator.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_configurator.rb b/test/test_configurator.rb
index 2aacda2..657e135 100644
--- a/test/test_configurator.rb
+++ b/test/test_configurator.rb
@@ -29,12 +29,12 @@ class ConfiguratorTest < Test::Unit::TestCase
         # 2 in front should run, but the sentinel shouldn't since dirhandler processes the request
         uri "/", :handler => plugin("/handlers/testplugin")
         uri "/", :handler => plugin("/handlers/testplugin")
-        uri "/", :handler => Mongrel::DirHandler.new(".", load_mime_map("examples/mime.yaml"))
+        uri "/", :handler => Mongrel::DirHandler.new(".")
         uri "/", :handler => plugin("/handlers/testplugin")
 
         uri "/test", :handler => plugin("/handlers/testplugin")
         uri "/test", :handler => plugin("/handlers/testplugin")
-        uri "/test", :handler => Mongrel::DirHandler.new(".", load_mime_map("examples/mime.yaml"))
+        uri "/test", :handler => Mongrel::DirHandler.new(".")
         uri "/test", :handler => plugin("/handlers/testplugin")
         run
       end