Skip to content

Commit

Permalink
TO BE REMOVED: enable merged doctests by default
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Oct 1, 2024
1 parent e904761 commit d9592c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/librustdoc/doctest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,8 @@ struct CreateRunnableDocTests {

impl CreateRunnableDocTests {
fn new(rustdoc_options: RustdocOptions, opts: GlobalTestOptions) -> CreateRunnableDocTests {
let can_merge_doctests = rustdoc_options.edition >= Edition::Edition2024;
// let can_merge_doctests = rustdoc_options.edition >= Edition::Edition2024;
let can_merge_doctests = true;
CreateRunnableDocTests {
standalone_tests: Vec::new(),
mergeable_tests: FxHashMap::default(),
Expand Down

0 comments on commit d9592c6

Please sign in to comment.