File tree 2 files changed +3
-17
lines changed
matter_testing_infrastructure/chip/testing
2 files changed +3
-17
lines changed Original file line number Diff line number Diff line change @@ -141,24 +141,8 @@ def __str__(self):
141
141
return f'{ self .name } : { str (self .conformance )} '
142
142
143
143
"""
144
- Location, XML namespaces, and XML Tags implementation below this line
144
+ XML namespaces and XML Tags dataclass implementation below this line
145
145
"""
146
- '''
147
- @dataclass
148
- class Location:
149
- """Represents a location in a source file for error reporting"""
150
- def __init__(self, file: str = "", line: int = 0):
151
- self.file = file
152
- self.line = line
153
-
154
- def __str__(self):
155
- if self.file and self.line:
156
- return f"{self.file}:{self.line}"
157
- elif self.file:
158
- return self.file
159
- return ""
160
- '''
161
-
162
146
@dataclass
163
147
class XmlNamespace :
164
148
"""Represents a namespace definition from XML"""
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ not_automated:
53
53
reason : Unit test - does not run against an app
54
54
- name : TestSpecParsingDeviceType.py
55
55
reason : Unit test - does not run against an app
56
+ - name : TestSpecParsingNamespace.py
57
+ reason : Unit test - does not run against an app
56
58
- name : TestConformanceTest.py
57
59
reason : Unit test - does not run against an app
58
60
- name : TestSpecParsingSelection.py
You can’t perform that action at this time.
0 commit comments