Skip to content

Commit fa17886

Browse files
dhalbertdpgeorge
authored andcommitted
tests/cmdline/repl_autocomplete_underscore.py: Remove trailing spaces.
They are not needed for this test to function as intended. Signed-off-by: Dan Halbert <halbert@halwitz.org>
1 parent 6b97759 commit fa17886

2 files changed

Lines changed: 10 additions & 12 deletions

File tree

tests/cmdline/repl_autocomplete_underscore.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,20 @@ def __init__(self):
77
self.public_attr = 1
88
self._private_attr = 2
99
self.__very_private = 3
10-
10+
1111
def public_method(self):
1212
pass
13-
13+
1414
def _private_method(self):
1515
pass
16-
16+
1717
@property
1818
def public_property(self):
1919
return 42
20-
21-
@property
20+
21+
@property
2222
def _private_property(self):
2323
return 99
24-
2524
{\x04}
2625
# Paste executed
2726

tests/cmdline/repl_autocomplete_underscore.py.exp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,21 @@ paste mode; Ctrl-C to cancel, Ctrl-D to finish
1111
=== self.public_attr = 1
1212
=== self._private_attr = 2
1313
=== self.__very_private = 3
14-
=== \$
14+
=== \$
1515
=== def public_method(self):
1616
=== pass
17-
=== \$
17+
=== \$
1818
=== def _private_method(self):
1919
=== pass
20-
=== \$
20+
=== \$
2121
=== @property
2222
=== def public_property(self):
2323
=== return 42
24-
=== \$
25-
=== @property \$
24+
=== \$
25+
=== @property
2626
=== def _private_property(self):
2727
=== return 99
2828
=== \$
29-
=== \$
3029
>>> # Paste executed
3130
>>> \$
3231
>>> # Create an instance

0 commit comments

Comments
 (0)