diff options
| author | Barry Warsaw | 2016-04-08 23:02:41 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-04-08 23:02:41 -0400 |
| commit | 4b5a9d2e2530d2dbd62a59248e0ee796340ed784 (patch) | |
| tree | 821c5f29ea3abcdb02345be702b6e67b7cca4b36 /src/mailman/utilities/tests/test_interact.py | |
| parent | b0b36f18f86be2c8a8a443bf425ad4114c53c06e (diff) | |
| download | mailman-4b5a9d2e2530d2dbd62a59248e0ee796340ed784.tar.gz mailman-4b5a9d2e2530d2dbd62a59248e0ee796340ed784.tar.zst mailman-4b5a9d2e2530d2dbd62a59248e0ee796340ed784.zip | |
Diffstat (limited to 'src/mailman/utilities/tests/test_interact.py')
| -rw-r--r-- | src/mailman/utilities/tests/test_interact.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/utilities/tests/test_interact.py b/src/mailman/utilities/tests/test_interact.py index 65a1155fb..d3803ab28 100644 --- a/src/mailman/utilities/tests/test_interact.py +++ b/src/mailman/utilities/tests/test_interact.py @@ -38,7 +38,7 @@ class TestInteract(unittest.TestCase): resources = ExitStack() self.addCleanup(resources.close) self._enter = resources.enter_context - self._enter(patch('code.input', side_effect=EOFError)) + self._enter(patch('builtins.input', side_effect=EOFError)) self._stderr = StringIO() self._enter(patch('sys.stderr', self._stderr)) |
