Skip to content

Commit

Permalink
[tests] Don't use pretty errors for display tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz committed Feb 20, 2024
1 parent bf8fca1 commit bc26bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/display/src/BaseDisplayTestContext.hx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class BaseDisplayTestContext {
}

static public function runHaxe(args:Array<String>, ?stdin:String) {
return haxeServer.rawRequest(args, stdin == null ? null : Bytes.ofString(stdin));
return haxeServer.rawRequest(["-D", "message.reporting=classic"].concat(args), stdin == null ? null : Bytes.ofString(stdin));
}

static function normalizePath(p:String):String {
Expand Down

0 comments on commit bc26bbd

Please sign in to comment.