@@ -49,7 +49,7 @@ fn test_timeout_behavior() {
4949 WasmRuntimeAsyncEngine :: block_on ( async {
5050 println ! ( "=== Timeout Behavior Test Start ===" ) ;
5151
52- // 1️⃣ This should complete successfully
52+ // This should complete successfully
5353 let fast_future = async {
5454 println ! ( "[Fast Future] Sleeping 100ms..." ) ;
5555 Timer :: sleep ( Duration :: from_millis ( 100 ) ) . await ;
@@ -65,7 +65,7 @@ fn test_timeout_behavior() {
6565 ) ;
6666 assert_eq ! ( result_fast. unwrap( ) , "fast_result" ) ;
6767
68- // 2️⃣ This should time out
68+ // This should time out
6969 let slow_future = async {
7070 println ! ( "[Slow Future] Sleeping 2s..." ) ;
7171 Timer :: sleep ( Duration :: from_secs ( 2 ) ) . await ;
@@ -79,7 +79,7 @@ fn test_timeout_behavior() {
7979 let err = result_slow. unwrap_err ( ) ;
8080 assert_eq ! ( err. kind( ) , std:: io:: ErrorKind :: TimedOut ) ;
8181
82- // 3️⃣ This should be right on the edge (expect to succeed)
82+ // This should be right on the edge (expect to succeed)
8383 let edge_future = async {
8484 println ! ( "[Edge Future] Sleeping 500ms..." ) ;
8585 Timer :: sleep ( Duration :: from_millis ( 500 ) ) . await ;
0 commit comments