Skip to content

Commit ea0d68c

Browse files
authored
Merge pull request #532 from ehuss/rust-1.83
Fix click handler test for 1.83
2 parents 95d7b87 + 2ceed5a commit ea0d68c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_click_handler.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
((11, ' &1 as &dyn Send;'),
1515
(15, ' Box::new(1) as Box<dyn Send>;')),
1616
),
17-
('tests/error-tests/tests/impl-generic-mismatch.rs', '>=1.69.0-beta',
17+
('tests/error-tests/tests/impl-generic-mismatch.rs', '>=1.83.0-beta',
1818
# Before
1919
((20, ' fn foo<U: Debug>(&self, _: &U) { }'),
2020
(39, ' fn bar(&self, _: &impl Debug) { }')),
2121
# After
2222
((20, ' fn foo(&self, _: &U) { }'),
2323
(20, ' fn foo(&self, _: &impl Debug) { }'),
24-
(39, ' fn bar<U: Debug>(&self, _: &impl Debug) { }'),
24+
(39, ' fn bar(&self, _: &U) { }'),
2525
(39, ' fn bar<U: Debug>(&self, _: &U) { }')),
2626
),
2727
]

0 commit comments

Comments
 (0)