File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl BrowserVersion {
4949 // To map a revision to a chromium version you can use the site https://chromiumdash.appspot.com/commits.
5050
5151 match kind {
52- BrowserKind :: Chromium => Self :: Revision ( Revision :: new ( 1520176 ) ) ,
52+ BrowserKind :: Chromium => Self :: Revision ( Revision :: new ( 1585606 ) ) ,
5353 BrowserKind :: Chrome => Self :: Channel ( Channel :: Stable ) ,
5454 BrowserKind :: ChromeHeadlessShell => Self :: Channel ( Channel :: Stable ) ,
5555 }
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ async fn verify_chromium_revision_available() {
3131#[ ignore]
3232#[ tokio:: test]
3333async fn find_chromium_revision_available ( ) {
34- let min = 1520176 ; // Enter the minimum revision
35- let max = 1520176 ; // Enter the maximum revision
34+ let min = 1583927 ; // Enter the minimum revision
35+ let max = 1586699 ; // Enter the maximum revision
3636
3737 let host = BrowserHost :: current ( BrowserKind :: Chromium ) ;
38- ' outer: for revision in ( min..max) . rev ( ) {
38+ ' outer: for revision in ( min..= max) . rev ( ) {
3939 println ! ( "Checking revision {}" , revision) ;
4040
4141 let build_info = BuildInfo :: revision ( Revision :: from ( revision) ) ;
You can’t perform that action at this time.
0 commit comments