# HG changeset patch # User Gilles Duboscq # Date 1400319695 -7200 # Node ID a9f969e65b61a3b3e4aae211333ef2a62ac3921b # Parent 50306276af419ef50823383802c39fa5275bd4e0 Use non-bold/bright colors in AnsiTerminalDecorator diff -r 50306276af41 -r a9f969e65b61 graal/com.oracle.graal.test/src/com/oracle/graal/test/AnsiTerminalDecorator.java --- a/graal/com.oracle.graal.test/src/com/oracle/graal/test/AnsiTerminalDecorator.java Fri May 16 18:08:21 2014 +0200 +++ b/graal/com.oracle.graal.test/src/com/oracle/graal/test/AnsiTerminalDecorator.java Sat May 17 11:41:35 2014 +0200 @@ -38,21 +38,21 @@ @Override public void testSucceeded(Description description) { - getWriter().print(BOLD_GREEN); + getWriter().print(GREEN); super.testSucceeded(description); getWriter().print(RESET); } @Override public void testFailed(Failure failure) { - getWriter().print(BOLD_RED); + getWriter().print(RED); super.testFailed(failure); getWriter().print(RESET); } @Override public void testIgnored(Description description) { - getWriter().print(BOLD_MAGENTA); + getWriter().print(MAGENTA); super.testIgnored(description); getWriter().print(RESET); }