X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FTools%2FScripts%2Fwebkitpy%2Flayout_tests%2Fport%2Fbase_unittest.py;h=e0e76d701271eebd44f2e8f70a4a8473270b79ef;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=263e50203fcbb36e34d07247eab83ff0ad1b4884;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py b/src/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py index 263e502..e0e76d7 100644 --- a/src/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py +++ b/src/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py @@ -332,7 +332,7 @@ class PortTest(unittest.TestCase): def test_check_httpd_success(self): port = self.make_port(executive=MockExecutive2()) - port._path_to_apache = lambda: '/usr/sbin/httpd' + port.path_to_apache = lambda: '/usr/sbin/httpd' capture = OutputCapture() capture.capture_output() self.assertTrue(port.check_httpd()) @@ -341,7 +341,7 @@ class PortTest(unittest.TestCase): def test_httpd_returns_error_code(self): port = self.make_port(executive=MockExecutive2(exit_code=1)) - port._path_to_apache = lambda: '/usr/sbin/httpd' + port.path_to_apache = lambda: '/usr/sbin/httpd' capture = OutputCapture() capture.capture_output() self.assertFalse(port.check_httpd())