File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ const USER_AGENT: &str = "docs.rs builder (https://github.com/rust-lang/docs.rs)
34
34
const COMPONENTS : & [ & str ] = & [ "llvm-tools-preview" , "rustc-dev" , "rustfmt" ] ;
35
35
const DUMMY_CRATE_NAME : & str = "empty-library" ;
36
36
const DUMMY_CRATE_VERSION : & str = "1.0.0" ;
37
- const DUMMY_CRATE_PUBLISHER_ID : & str = "2299951" ; // pietroalbini
38
37
39
38
#[ derive( Debug ) ]
40
39
pub enum PackageKind < ' a > {
@@ -959,6 +958,8 @@ mod tests {
959
958
use crate :: test:: { assert_redirect, assert_success, wrapper} ;
960
959
use serde_json:: Value ;
961
960
961
+ const DUMMY_CRATE_PUBLISHER_ID : & str = "4825" ;
962
+
962
963
#[ test]
963
964
#[ ignore]
964
965
fn test_build_crate ( ) {
@@ -1167,6 +1168,10 @@ mod tests {
1167
1168
// cache dir doesn't contain doc output
1168
1169
assert ! ( !expected_cache_dir. join( "doc" ) . exists( ) ) ;
1169
1170
1171
+ for chld in std:: fs:: read_dir ( & expected_cache_dir) ? {
1172
+ dbg ! ( & chld) ;
1173
+ }
1174
+
1170
1175
// but seems to be a normal cargo target directory,
1171
1176
// which also means that `build_package` actually used the
1172
1177
// target directory, and it was moved into the cache afterwards.
You can’t perform that action at this time.
0 commit comments