Skip to content

Commit

Permalink
Merge pull request #532 from ehuss/rust-1.83
Browse files Browse the repository at this point in the history
Fix click handler test for 1.83
  • Loading branch information
ehuss authored Sep 6, 2024
2 parents 95d7b87 + 2ceed5a commit ea0d68c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_click_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
((11, ' &1 as &dyn Send;'),
(15, ' Box::new(1) as Box<dyn Send>;')),
),
('tests/error-tests/tests/impl-generic-mismatch.rs', '>=1.69.0-beta',
('tests/error-tests/tests/impl-generic-mismatch.rs', '>=1.83.0-beta',
# Before
((20, ' fn foo<U: Debug>(&self, _: &U) { }'),
(39, ' fn bar(&self, _: &impl Debug) { }')),
# After
((20, ' fn foo(&self, _: &U) { }'),
(20, ' fn foo(&self, _: &impl Debug) { }'),
(39, ' fn bar<U: Debug>(&self, _: &impl Debug) { }'),
(39, ' fn bar(&self, _: &U) { }'),
(39, ' fn bar<U: Debug>(&self, _: &U) { }')),
),
]
Expand Down

0 comments on commit ea0d68c

Please sign in to comment.