summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-05-04 23:58:41 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-05-04 23:58:41 (GMT)
commitdaaf8ee8106426f65dbf85f7c1b6009db894e623 (patch)
tree4f75165a060f7f39328857206cacdb6edd7247d9
parent9f4bf1dcd141aac75ca0ae32d97c45248d685866 (diff)
downloadcpython-daaf8ee8106426f65dbf85f7c1b6009db894e623.zip
cpython-daaf8ee8106426f65dbf85f7c1b6009db894e623.tar.gz
cpython-daaf8ee8106426f65dbf85f7c1b6009db894e623.tar.bz2
Re-enabled test
-rw-r--r--Lib/test/test_warnings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py
index 0f3ee8b..f8e760d 100644
--- a/Lib/test/test_warnings.py
+++ b/Lib/test/test_warnings.py
@@ -279,7 +279,7 @@ class WarnTests(unittest.TestCase):
warning_tests.__name__ = module_name
sys.argv = argv
- def BROKEN_test_missing_filename_main_with_argv_empty_string(self):
+ def test_missing_filename_main_with_argv_empty_string(self):
# If __file__ is not specified, the caller is __main__, and sys.argv[0]
# is the empty string, then '__main__ is the file name.
# Tests issue 2743.