Skip to content

Commit bf6f894

Browse files
committed
Issue-182 - Improve test
1 parent 5d3c559 commit bf6f894

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

extension/src/lambda_service.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,8 +1054,9 @@ mod tests {
10541054
}
10551055
}
10561056
assert!(
1057-
duration <= std::time::Duration::from_secs(2),
1058-
"Connection should take at most 2 seconds"
1057+
duration <= std::time::Duration::from_secs(3),
1058+
"Test should take at most 3 seconds, took: {:.1}",
1059+
duration.as_secs_f64()
10591060
);
10601061

10611062
// Healthcheck not called

0 commit comments

Comments
 (0)