Commit 090b2968 authored by John Chen's avatar John Chen Committed by Commit Bot

[ChromeDriver] Fix ExistingUserDataDirTest

Add a missing call to base class tearDown in ExistingUserDataDirTest, to
fix breakage in waterfall.

Bug: chromedriver:2446
Change-Id: Ibf0356c53edb92d729aa3d5b8de01a1471fc8bdf
Reviewed-on: https://chromium-review.googlesource.com/1090040Reviewed-by: default avatarCaleb Rouleau <crouleau@chromium.org>
Commit-Queue: Caleb Rouleau <crouleau@chromium.org>
Cr-Commit-Position: refs/heads/master@{#565120}
parent 2712126a
......@@ -2623,6 +2623,7 @@ class ExistingUserDataDirTest(ChromeDriverBaseTest):
self.user_data_dir = tempfile.mkdtemp()
def tearDown(self):
super(ExistingUserDataDirTest, self).tearDown()
shutil.rmtree(self.user_data_dir, ignore_errors=True)
def testStartUpWithExistingDevToolsPortFile(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment