File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/bootstrap/src/core/builder Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ fn alias_and_path_for_library() {
237
237
) ;
238
238
assert_eq ! (
239
239
first( cache. all:: <doc:: Std >( ) ) ,
240
- & [ doc_std!( TEST_TRIPLE_1 => TEST_TRIPLE_1 , stage = 0 ) ]
240
+ & [ doc_std!( TEST_TRIPLE_1 => TEST_TRIPLE_1 , stage = 1 ) ]
241
241
) ;
242
242
}
243
243
@@ -433,14 +433,14 @@ mod defaults {
433
433
assert_eq ! ( first( cache. all:: <doc:: ErrorIndex >( ) ) , & [ doc:: ErrorIndex { target: a } , ] ) ;
434
434
assert_eq ! (
435
435
first( cache. all:: <tool:: ErrorIndex >( ) ) ,
436
- & [ tool:: ErrorIndex { compiler: Compiler :: new( 0 , a) } ]
436
+ & [ tool:: ErrorIndex { compiler: Compiler :: new( 1 , a) } ]
437
437
) ;
438
438
// docs should be built with the beta compiler, not with the stage0 artifacts.
439
439
// recall that rustdoc is off-by-one: `stage` is the compiler rustdoc is _linked_ to,
440
440
// not the one it was built by.
441
441
assert_eq ! (
442
442
first( cache. all:: <tool:: Rustdoc >( ) ) ,
443
- & [ tool:: Rustdoc { compiler: Compiler :: new( 0 , a) } , ]
443
+ & [ tool:: Rustdoc { compiler: Compiler :: new( 1 , a) } , ]
444
444
) ;
445
445
}
446
446
}
You can’t perform that action at this time.
0 commit comments