Skip to content

Commit b514fcf

Browse files
committed
ssh-console: fix log rotation test boundary
Signed-off-by: Patrice Breton <pbreton@nvidia.com>
1 parent f40026a commit b514fcf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/ssh-console/tests/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ async fn test_ssh_console_log_rotation() -> eyre::Result<()> {
501501
assert!(path.exists(), "did not see any logs at {}", path.display());
502502
let size = path.metadata()?.len();
503503
assert!(
504-
size < 1024 * 10,
504+
size <= 1024 * 10,
505505
"logs at {} exceeded configured size: {} > 10 KiB",
506506
path.display(),
507507
size

0 commit comments

Comments
 (0)