summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/tools/blinkpy/web_tests/port/browser_test_driver.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/tools/blinkpy/web_tests/port/browser_test_driver.py')
-rw-r--r--chromium/third_party/blink/tools/blinkpy/web_tests/port/browser_test_driver.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/tools/blinkpy/web_tests/port/browser_test_driver.py b/chromium/third_party/blink/tools/blinkpy/web_tests/port/browser_test_driver.py
index b580a810c5a..4cdaa786864 100644
--- a/chromium/third_party/blink/tools/blinkpy/web_tests/port/browser_test_driver.py
+++ b/chromium/third_party/blink/tools/blinkpy/web_tests/port/browser_test_driver.py
@@ -43,7 +43,7 @@ class BrowserTestDriver(Driver):
assign it to the stdin of the process that is owned by this driver's
server process.
"""
- # FIXME(ivandavid): Need to handle case where the layout test doesn't
+ # FIXME(ivandavid): Need to handle case where the web test doesn't
# get a file name.
new_cmd_line = self.cmd_line(per_test_args)
if not self._server_process or new_cmd_line != self._current_cmd_line:
@@ -52,7 +52,7 @@ class BrowserTestDriver(Driver):
self._open_stdin_path(deadline)
# Gets the path of the directory that the file for stdin communication is
- # in. Since the browser test cannot clean it up, the layout test framework
+ # in. Since the browser test cannot clean it up, the web test framework
# will. Everything the browser test uses is stored in the same directory as
# the stdin file, so deleting that directory recursively will remove all the
# other temp data, like the printed pdf. This function assumes the correct