Swap hang test results

This commit is contained in:
imaqtkatt 2024-01-30 12:30:23 -03:00
parent ce885a29fd
commit a87e2ed8fb

View File

@ -187,6 +187,6 @@ fn hangs() {
});
std::thread::sleep(std::time::Duration::from_secs(expected_normalization_time));
if !*lck.read().unwrap() { Err("Hangs".into()) } else { Ok("Not hangs".into()) }
if !*lck.read().unwrap() { Ok("Hangs".into()) } else { Err("Doesn't hang".into()) }
})
}