@@ -40,14 +40,14 @@ (port = [server bindToHost: @"127.0.0.1" port: 0])) } @catch (OFBindFailedException *e) { switch (e.errNo) { case EPROTONOSUPPORT: - [self outputString: @"[OFSCTPSocket] " - @"-[bindToHost:port:]: SCTP " - @"unsupported, skipping tests\n" - inColor: GREEN]; + of_stdout.foregroundColor = [OFColor lime]; + [of_stdout writeLine: + @"[OFSCTPSocket] -[bindToHost:port:]: " + @"SCTP unsupported, skipping tests"]; break; default: @throw e; }