You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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()
The text was updated successfully, but these errors were encountered:
Hi, I have corrected typos in your last example code.
Old:
Fixed:
The text was updated successfully, but these errors were encountered: