Skip to content

Commit 6d6c890

Browse files
committed
ci fix
1 parent fc582db commit 6d6c890

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

crates/vastlint-core/tests/integration.rs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,21 @@ fn minimal_3_0_inline_does_not_fire_version_mismatch() {
187187
fn newer_declared_versions_do_not_fire_version_mismatch_across_structural_floors() {
188188
let floor_cases = [
189189
("2.0", "", ""),
190-
("3.0", r#"<Pricing model="cpm" currency="USD">1.50</Pricing>"#, ""),
190+
(
191+
"3.0",
192+
r#"<Pricing model="cpm" currency="USD">1.50</Pricing>"#,
193+
"",
194+
),
191195
(
192196
"4.0",
193197
"",
194198
r#"<UniversalAdId idRegistry="ad-id.org">TEST-1234</UniversalAdId>"#,
195199
),
196-
("4.1", r#"<AdServingId>TEST-SERVING-ID-001</AdServingId>"#, ""),
200+
(
201+
"4.1",
202+
r#"<AdServingId>TEST-SERVING-ID-001</AdServingId>"#,
203+
"",
204+
),
197205
];
198206

199207
for declared_version in ["3.0", "4.0", "4.1", "4.2", "4.3"] {

0 commit comments

Comments
 (0)