Skip to content

Commit 96aaf4f

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: [From] minor fix tests added by symfony#17798 for bootstrap theme
2 parents 70bb9bb + 7c3e4cf commit 96aaf4f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Symfony/Component/Form/Tests/AbstractBootstrap3LayoutTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ public function testSingleChoiceExpandedWithLabelsAsFalse()
746746
./input[@type="radio"][@name="name"][@id="name_1"][@value="&b"][not(@checked)]
747747
]
748748
]
749-
/following-sibling::input[@type="hidden"][@id="name__token"][@class="form-control"]
749+
/following-sibling::input[@type="hidden"][@id="name__token"]
750750
]
751751
'
752752
);
@@ -797,7 +797,7 @@ public function testSingleChoiceExpandedWithLabelsSetByCallable()
797797
./input[@type="radio"][@name="name"][@id="name_2"][@value="&c"][not(@checked)]
798798
]
799799
]
800-
/following-sibling::input[@type="hidden"][@id="name__token"][@class="form-control"]
800+
/following-sibling::input[@type="hidden"][@id="name__token"]
801801
]
802802
'
803803
);
@@ -834,7 +834,7 @@ public function testSingleChoiceExpandedWithLabelsSetFalseByCallable()
834834
./input[@type="radio"][@name="name"][@id="name_1"][@value="&b"][not(@checked)]
835835
]
836836
]
837-
/following-sibling::input[@type="hidden"][@id="name__token"][@class="form-control"]
837+
/following-sibling::input[@type="hidden"][@id="name__token"]
838838
]
839839
'
840840
);
@@ -1122,7 +1122,7 @@ public function testMultipleChoiceExpandedWithLabelsAsFalse()
11221122
./input[@type="checkbox"][@name="name[]"][@id="name_1"][@value="&b"][not(@checked)]
11231123
]
11241124
]
1125-
/following-sibling::input[@type="hidden"][@id="name__token"][@class="form-control"]
1125+
/following-sibling::input[@type="hidden"][@id="name__token"]
11261126
]
11271127
'
11281128
);
@@ -1173,7 +1173,7 @@ public function testMultipleChoiceExpandedWithLabelsSetByCallable()
11731173
./input[@type="checkbox"][@name="name[]"][@id="name_2"][@value="&c"][not(@checked)]
11741174
]
11751175
]
1176-
/following-sibling::input[@type="hidden"][@id="name__token"][@class="form-control"]
1176+
/following-sibling::input[@type="hidden"][@id="name__token"]
11771177
]
11781178
'
11791179
);
@@ -1210,7 +1210,7 @@ public function testMultipleChoiceExpandedWithLabelsSetFalseByCallable()
12101210
./input[@type="checkbox"][@name="name[]"][@id="name_1"][@value="&b"][not(@checked)]
12111211
]
12121212
]
1213-
/following-sibling::input[@type="hidden"][@id="name__token"][@class="form-control"]
1213+
/following-sibling::input[@type="hidden"][@id="name__token"]
12141214
]
12151215
'
12161216
);

0 commit comments

Comments
 (0)