@@ -32,10 +32,10 @@ public void ParseDataGenCommandOptionsSupportsExtendedPromptOptions()
3232 Assert . EndsWith ( Path . Combine ( "data" , "code-review.jsonl" ) , options . OutputPath , StringComparison . Ordinal ) ;
3333 Assert . Equal ( "qa" , options . TaskType ) ;
3434 Assert . Equal ( [ "Use American English" , "Grounded" , "Diverse" ] , options . Constraints ) ;
35- Assert . Equal ( "/tmp/seeds.json" , options . SeedsPath ) ;
35+ Assert . Equal ( Path . GetFullPath ( "/tmp/seeds.json" ) , options . SeedsPath ) ;
3636 Assert . Contains ( "\" instruction\" " , options . OutputSchema , StringComparison . Ordinal ) ;
3737 Assert . Equal ( "/tmp/template.json" , options . TemplatePath ) ;
38- Assert . Equal ( "/tmp/domain-lora.bin" , options . LoraPath ) ;
38+ Assert . Equal ( Path . GetFullPath ( "/tmp/domain-lora.bin" ) , options . LoraPath ) ;
3939 Assert . Equal ( 5 , options . CandidateCount ) ;
4040 Assert . Equal ( 0.7d , options . MinimumQualityScore ) ;
4141 Assert . Equal ( 64 , options . MaxOutputTokens ) ;
@@ -100,7 +100,7 @@ public async Task DataGenCommandWritesMergedPromptAndMetadata()
100100 Assert . Contains ( "Review" , first . Prompt , StringComparison . Ordinal ) ;
101101 Assert . Contains ( "Review null handling" , first . GroundingContext ) ;
102102 Assert . Contains ( "Review tests" , first . GroundingContext ) ;
103- Assert . Equal ( "/tmp/code-review-lora.bin" , first . LoraPath ) ;
103+ Assert . Equal ( Path . GetFullPath ( "/tmp/code-review-lora.bin" ) , first . LoraPath ) ;
104104 Assert . False ( string . IsNullOrWhiteSpace ( first . SeedInstruction ) ) ;
105105 Assert . False ( string . IsNullOrWhiteSpace ( first . SeedResponse ) ) ;
106106 Assert . False ( string . IsNullOrWhiteSpace ( first . Variation ) ) ;
0 commit comments