We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6998fb3 commit d87966bCopy full SHA for d87966b
tests/testsuite/publish.rs
@@ -2579,7 +2579,7 @@ fn wait_for_subsequent_publish() {
2579
let mut lock = arc.lock().unwrap();
2580
*lock += 1;
2581
// if the package name contains _ or -
2582
- if *lock <= 1 {
+ if *lock <= 2 {
2583
server.not_found(req)
2584
} else {
2585
server.index(req)
@@ -2628,7 +2628,7 @@ See [..]
2628
2629
// Verify the responder has been pinged
2630
let lock = arc2.lock().unwrap();
2631
- assert_eq!(*lock, 2);
+ assert_eq!(*lock, 3);
2632
drop(lock);
2633
2634
let p = project()
0 commit comments