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

Documentation typo #56

Closed
quackenbush opened this issue Dec 5, 2020 · 1 comment
Closed

Documentation typo #56

quackenbush opened this issue Dec 5, 2020 · 1 comment
Assignees

Comments

@quackenbush
Copy link

Hi, I have corrected typos in your last example code.

Old:

from junitparser import Element, Attr, TestSuite

# Create the new element by subclassing Element or one of its child class,
# and add custom attributes to it.
class MyTestCase(TestCase):
    foo = Attr()

Fixed:

from junitparser import TestCase, Attr, JUnitXml

# Create the new element by subclassing Element or one of its child class,
# and add custom attributes to it.
class MyTestCase(TestCase):
    foo = Attr()
@weiwei weiwei self-assigned this Jan 14, 2021
@weiwei
Copy link
Owner

weiwei commented May 30, 2021

Cool. Thanks!

@weiwei weiwei closed this as completed May 30, 2021
weiwei added a commit that referenced this issue May 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants