Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(test.properties): use doctest.ELLIPSIS for traceback #481

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions test/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,10 @@ class instance count from object:
1

as expected you can't assign new value to read only property
>>> x1.value_r = 2
>>> x1.value_r = 2 # doctest: +ELLIPSIS
Traceback (most recent call last):
File "properties.py", line 49, in ?
x1.value_r = 2
AttributeError: can't set attribute
...
AttributeError: ...

setting value_rw to 2. value_direct:
>>> x1.value_rw = 2
Expand Down
Loading