@@ -326,7 +326,7 @@ impl std::fmt::Display for VerifyResult {
326
326
// Failed some tests
327
327
11 => write ! (
328
328
f,
329
- "\n {}:\n \n {}{}\n {}{}\n " ,
329
+ "\n {}:\n \n {}{}\n {}{}\n {}{} \n " ,
330
330
& self . status. status_msg. red( ) . bold( ) ,
331
331
"Total Correct: " . green( ) ,
332
332
& self
@@ -336,7 +336,7 @@ impl std::fmt::Display for VerifyResult {
336
336
. unwrap_or( & Number :: from( 0 ) )
337
337
. to_string( )
338
338
. green( ) ,
339
- "Total Testcases: " . bold ( ) . yellow( ) ,
339
+ "Total Testcases: " . yellow( ) ,
340
340
& self
341
341
. analyse
342
342
. total_testcases
@@ -345,6 +345,8 @@ impl std::fmt::Display for VerifyResult {
345
345
. to_string( )
346
346
. bold( )
347
347
. yellow( ) ,
348
+ "Last TestCase: " . dimmed( ) ,
349
+ & self . submit. last_testcase. dimmed( )
348
350
) ,
349
351
// Output Timeout Exceeded
350
352
13 => write ! (
@@ -376,7 +378,7 @@ mod verify {
376
378
#[ serde( default ) ]
377
379
question_id : String ,
378
380
#[ serde( default ) ]
379
- last_testcase : String ,
381
+ pub last_testcase : String ,
380
382
#[ serde( default ) ]
381
383
pub compare_result : String ,
382
384
}
0 commit comments