Fix integers in tests (fixup #22700)

This commit is contained in:
Manish Goregaokar 2015-02-24 13:49:01 +05:30
parent 2d74b53a03
commit b182cd7245
3 changed files with 4 additions and 4 deletions

View file

@ -473,7 +473,7 @@ mod test {
#[test]
fn stress() {
static AMT: u32 = 10000;
static AMT: i32 = 10000;
let (tx1, rx1) = channel::<i32>();
let (tx2, rx2) = channel::<i32>();
let (tx3, rx3) = channel::<()>();