Index: Tools/Scripts/webkitpy/tool/servers/rebaselineserver.py |
diff --git a/Tools/Scripts/webkitpy/tool/servers/rebaselineserver.py b/Tools/Scripts/webkitpy/tool/servers/rebaselineserver.py |
index 9e9c379d6b055895e13015848187ed99f7132907..cdbb7599f96bd0db1d9c99b0f9a1875858828a46 100644 |
--- a/Tools/Scripts/webkitpy/tool/servers/rebaselineserver.py |
+++ b/Tools/Scripts/webkitpy/tool/servers/rebaselineserver.py |
@@ -31,7 +31,6 @@ import os |
import os.path |
import BaseHTTPServer |
-from webkitpy.common.host import Host # FIXME: This should not be needed! |
from webkitpy.layout_tests.port.base import Port |
from webkitpy.tool.servers.reflectionhandler import ReflectionHandler |
@@ -175,11 +174,7 @@ def get_test_baselines(test_file, test_config): |
return self._platforms_by_directory[directory] |
test_path = test_config.filesystem.join(test_config.layout_tests_directory, test_file) |
- |
- # FIXME: This should get the Host from the test_config to be mockable! |
- host = Host() |
- host.initialize_scm() |
- host.filesystem = test_config.filesystem |
+ host = test_config.host |
all_platforms_port = AllPlatformsPort(host) |
all_test_baselines = {} |