File tree Expand file tree Collapse file tree 2 files changed +0
-24
lines changed
src/Magento/FunctionalTestingFramework Expand file tree Collapse file tree 2 files changed +0
-24
lines changed Original file line number Diff line number Diff line change 49
49
</xs : group >
50
50
51
51
<!-- Data Attributes -->
52
- <xs : attribute type =" xs:string" name =" expected" >
53
- <xs : annotation >
54
- <xs : documentation >
55
- Assertion's Expected value. Cast by expectedType.
56
- </xs : documentation >
57
- </xs : annotation >
58
- </xs : attribute >
59
-
60
- <xs : attribute type =" xs:string" name =" actual" >
61
- <xs : annotation >
62
- <xs : documentation >
63
- Assertion's Actual value. Cast by actualType.
64
- </xs : documentation >
65
- </xs : annotation >
66
- </xs : attribute >
67
-
68
52
<xs : attribute type =" xs:string" name =" message" >
69
53
<xs : annotation >
70
54
<xs : documentation >
112
96
<xs : choice maxOccurs =" unbounded" >
113
97
<xs : element name =" expectedResult" type =" expectedElementContainsType" minOccurs =" 0" />
114
98
</xs : choice >
115
- <xs : attribute type =" xs:string" name =" expectedValue" >
116
- <xs : annotation >
117
- <xs : documentation >
118
- Assertion's Expected value. Cast by expectedType.
119
- </xs : documentation >
120
- </xs : annotation >
121
- </xs : attribute >
122
99
<xs : attributeGroup ref =" commonActionAttributes" />
123
100
</xs : complexType >
124
101
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ public function execute(InputInterface $input)
34
34
foreach ($ finder ->files () as $ file ) {
35
35
$ contents = $ file ->getContents ();
36
36
// Isolate <assert ... /> but never <assert> ... </assert>, stops after finding first />
37
- // preg_match_all('/<assert[^>]*\/>/', $contents, $potentialAssertions);
38
37
preg_match_all ('/<assert.*\/>/ ' , $ contents , $ potentialAssertions );
39
38
$ newAssertions = [];
40
39
$ index = 0 ;
You can’t perform that action at this time.
0 commit comments