Fix anos::vga_buffer::test_println_many

This commit is contained in:
Sainnhe Park 2022-01-11 15:52:54 +08:00
parent a3bc614725
commit f0f10fc701
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ fn test_println_simple() { // 测试单行 println!
#[test_case]
fn test_println_many() { // 测试多行 println!
for _ in 0..100 {
for _ in 0..10 {
println!("test_println_many output");
}
}