diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:48:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:48:19 (GMT) |
commit | e8c8a592e769196d3b15e85ff63fca04c670d391 (patch) | |
tree | bb1b32fa5d0c673f8b3e502053fcf2dfa802194e /Lib/test/test_webbrowser.py | |
parent | 1eca062be691af2fe82724c9c5c5acbfc7ed72f8 (diff) | |
download | cpython-e8c8a592e769196d3b15e85ff63fca04c670d391.zip cpython-e8c8a592e769196d3b15e85ff63fca04c670d391.tar.gz cpython-e8c8a592e769196d3b15e85ff63fca04c670d391.tar.bz2 |
fix duplicate test name (closes #19126)
Diffstat (limited to 'Lib/test/test_webbrowser.py')
-rw-r--r-- | Lib/test/test_webbrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_webbrowser.py b/Lib/test/test_webbrowser.py index 34b9364..c3292c4 100644 --- a/Lib/test/test_webbrowser.py +++ b/Lib/test/test_webbrowser.py @@ -158,7 +158,7 @@ class OperaCommandTest(CommandTestMixin, unittest.TestCase): options=['-remote'], arguments=['openURL({},new-window)'.format(URL)]) - def test_open_new(self): + def test_open_new_tab(self): self._test('open_new_tab', options=['-remote'], arguments=['openURL({},new-page)'.format(URL)]) |