| --- a/Lib/test/test_argparse.py |
| +++ b/Lib/test/test_argparse.py |
| @@ -31,9 +31,9 @@ |
| def setUp(self): |
| # The tests assume that line wrapping occurs at 80 columns, but this |
| # behaviour can be overridden by setting the COLUMNS environment |
| - # variable. To ensure that this assumption is true, unset COLUMNS. |
| + # variable. To ensure that this width is used, set COLUMNS=80. |
| env = support.EnvironmentVarGuard() |
| - env.unset("COLUMNS") |
| + env['COLUMNS'] = '80' |
| self.addCleanup(env.__exit__) |